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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    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-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-notice {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

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

.nav a:hover {
    color: #2c5f8d;
}

.hero-card {
    margin-bottom: 40px;
}

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

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

.hero-overlay h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 19px;
    color: #f0f0f0;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f8d;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: #e8f2f7;
    transform: translateY(-2px);
}

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

.intro-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.intro-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.services-grid-section {
    padding: 60px 0 80px;
    background-color: #f1f4f7;
}

.section-heading {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c5f8d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c5f8d;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 16px;
}

.select-service {
    width: 100%;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234a6e;
}

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

.form-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 650px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

.form-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #234a6e;
    transform: translateY(-2px);
}

.trust-section {
    padding: 70px 0;
    background-color: #e8f2f7;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.trust-card {
    background-color: #ffffff;
    padding: 36px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(33.333% - 28px);
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

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

.trust-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #1a3a52;
    color: #d0d8e0;
    padding: 50px 0 20px;
}

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

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

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

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

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

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

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

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

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

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #c0c8d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
}

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

.cookie-banner.show {
    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;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a7bc8;
}

.btn-reject {
    background-color: #666;
    color: #ffffff;
}

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

.page-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.page-hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 10px;
}

.page-hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
}

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

.about-intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.about-intro-card h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c5f8d;
}

.about-intro-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 60px;
}

.value-card {
    background-color: #ffffff;
    padding: 32px 26px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(50% - 26px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c5f8d;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.story-section,
.team-approach {
    background-color: #ffffff;
    padding: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.story-section h2,
.team-approach h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.story-section p,
.team-approach p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.cta-card {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f8d;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.services-detail-section {
    padding: 60px 0 80px;
}

.services-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #555;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1 1 45%;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
}

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

.service-detail-content {
    flex: 1 1 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c5f8d;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.feature {
    background-color: #e8f2f7;
    color: #2c5f8d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin: 20px 0 18px;
}

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

.contact-page-grid {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.contact-info-card > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #2c5f8d;
}

.thanks-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selected-service-info {
    background-color: #e8f2f7;
    padding: 18px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 16px;
    color: #2c5f8d;
    font-weight: 600;
}

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

.thanks-button,
.thanks-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.thanks-button {
    background-color: #2c5f8d;
    color: #ffffff;
}

.thanks-button:hover {
    background-color: #234a6e;
    transform: translateY(-2px);
}

.thanks-button-secondary {
    background-color: #e8f2f7;
    color: #2c5f8d;
}

.thanks-button-secondary:hover {
    background-color: #d4e5ef;
    transform: translateY(-2px);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c5f8d;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c5f8d;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #2c5f8d;
}

.legal-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 14px;
}

.legal-section ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

    .nav {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .service-card {
        flex: 1 1 100%;
        max-width: none;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        height: 300px;
    }

    .form-card {
        padding: 30px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}