* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

a {
    color: #0984e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #74b9ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
}

.ad-disclosure {
    padding: 5px 12px;
    background-color: #fdcb6e;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3436;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #0984e3;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 700px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300;
}

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d3436;
}

.card-body p {
    color: #636e72;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #dfe6e9;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1 1 300px;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-content p {
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0984e3;
    margin-top: 10px;
}

.btn-primary {
    background-color: #0984e3;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #74b9ff;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: #0984e3;
    padding: 14px 32px;
    border: 2px solid #0984e3;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0984e3;
    color: #ffffff;
    transform: scale(1.02);
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.form-image {
    flex: 1 1 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1 1 400px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.form-container p {
    color: #636e72;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0984e3;
}

.trust-section {
    padding: 80px 0;
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.trust-content img {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 12px;
}

.trust-text {
    flex: 1 1 400px;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.trust-text p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

.link-arrow {
    color: #0984e3;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b2bec3;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #b2bec3;
    line-height: 1.7;
}

.footer-disclaimer {
    border-top: 1px solid #636e72;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #b2bec3;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #636e72;
}

.footer-bottom p {
    color: #b2bec3;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

.cookie-content a {
    color: #74b9ff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #55efc4;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 25px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2d3436;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.page-header p {
    font-size: 1.2rem;
    color: #636e72;
}

.about-content {
    padding: 80px 0;
}

.about-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.about-text p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3436;
}

.value-card p {
    color: #636e72;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.team-content img {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 12px;
}

.team-text {
    flex: 1 1 400px;
}

.team-text p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.cta-box p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 30px;
}

.services-full {
    padding: 60px 0;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-card-reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 400px;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
}

.service-details {
    flex: 1 1 400px;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.service-details p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1rem;
    color: #636e72;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0984e3;
}

.booking-cta {
    padding: 80px 0;
    background-color: #0984e3;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 400px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.info-block p {
    color: #636e72;
    line-height: 1.8;
}

.contact-image {
    flex: 1 1 400px;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
}

.location-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.location-details p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.faq-item p {
    color: #636e72;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-box {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #00b894;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-message {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.thanks-details p {
    color: #636e72;
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.thanks-next ul {
    padding-left: 20px;
}

.thanks-next ul li {
    color: #636e72;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-info {
    padding: 60px 0;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3436;
}

.info-card p {
    color: #636e72;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
}

.legal-intro {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d3436;
}

.legal-page p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-page ul li {
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-updated {
    margin-top: 50px;
    font-style: italic;
    color: #b2bec3;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .card-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .thanks-box h1 {
        font-size: 2rem;
    }
}