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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #2c5282;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 10px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 20px;
    gap: 15px;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.ad-disclosure-mobile {
    font-size: 11px;
    color: #718096;
    padding: 8px 0;
}

.hero-card {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.7), rgba(118, 169, 209, 0.5));
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a365d;
    margin-bottom: 20px;
}

.hero-text-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2c5282;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 25px;
}

.intro-card p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 38px;
    text-align: center;
    color: #1a365d;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2c5282;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-info {
    background-color: #e6f7ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #1a365d;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.btn-submit {
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.3);
}

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

.trust-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 40px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: #4a5568;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fffaf0;
}

.disclaimer-card {
    background-color: #fff5e6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ed8936;
}

.disclaimer-card p {
    font-size: 14px;
    color: #744210;
    line-height: 1.7;
}

.footer {
    background-color: #1a365d;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a365d;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #38a169;
}

.btn-cookie-reject {
    background-color: #cbd5e0;
    color: #2d3748;
}

.btn-cookie-reject:hover {
    background-color: #a0aec0;
}

.page-header {
    background: linear-gradient(135deg, #2c5282, #4299e1);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

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

.about-intro-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

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

.about-text h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
}

.about-image {
    flex: 1 1 400px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-card,
.approach-card,
.how-it-works-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.mission-card h2,
.approach-card h2,
.how-it-works-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 25px;
}

.mission-card p,
.approach-card p,
.how-it-works-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
}

.values-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.values-section h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 40px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #4a5568;
}

.references-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 20px;
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.references-list li a {
    color: #2c5282;
    text-decoration: none;
}

.references-list li a:hover {
    text-decoration: underline;
}

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

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 30px;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1 1 400px;
    height: 350px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282, #4299e1);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-card .btn-primary {
    background-color: #ffffff;
    color: #2c5282;
}

.cta-card .btn-primary:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

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

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

.contact-info-card {
    flex: 1 1 450px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1 1 400px;
    height: 500px;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 50px;
    border-radius: 12px;
}

.contact-note-card h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
}

.contact-note-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
}

.contact-note-card a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
}

.contact-note-card a:hover {
    text-decoration: underline;
}

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

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

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

.thanks-card h1 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-confirmation {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: #1a365d;
    font-weight: 600;
}

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

.legal-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.legal-card h2 {
    font-size: 26px;
    color: #1a365d;
    margin-top: 35px;
    margin-bottom: 18px;
}

.legal-card h3 {
    font-size: 20px;
    color: #2c5282;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-card p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-card ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-card ul li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-card strong {
    color: #2d3748;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-card {
        height: 500px;
    }

    .hero-text-card {
        padding: 35px;
    }

    .hero-text-card h1 {
        font-size: 32px;
    }

    .hero-text-card p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

    .form-card {
        padding: 35px;
    }

    .about-intro-card,
    .service-detail-card {
        padding: 35px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 30px;
    }

    .legal-card {
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 25px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}