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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2d7ab8;
    --accent-color: #e68a00;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    margin: 40px 5%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.hero-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
}

.hero-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-cards {
    margin: 40px 5%;
}

.card-container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--card-hover-shadow);
}

.info-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.services-grid {
    margin: 60px 5%;
}

.section-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 8px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-section {
    margin: 60px 5%;
}

.form-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-card > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    margin: 60px 5%;
}

.trust-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.trust-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--bg-white);
    margin-top: 80px;
    padding: 50px 5% 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-section p {
    font-size: 15px;
    color: #c4c4c4;
    line-height: 1.7;
}

.footer-section a {
    color: #c4c4c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: #c4c4c4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

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

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header-card {
    background-color: var(--bg-white);
    padding: 80px 5%;
    margin: 40px 5%;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.page-header-card h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header-card p {
    font-size: 20px;
    color: var(--text-light);
}

.about-content {
    margin: 40px 5%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.content-card-large {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.content-split {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.content-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-text h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.content-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.values-grid {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-card {
    padding: 32px;
    border-radius: 12px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: #eef1f4;
    transform: translateY(-2px);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    margin: 48px 0;
}

.approach-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.approach-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.approach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 60px 50px 40px;
    color: var(--bg-white);
}

.approach-overlay h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.approach-overlay p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
}

.team-section {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.services-detail {
    margin: 40px 5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-content h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 12px;
}

.cta-section-card {
    background-color: var(--bg-white);
    padding: 60px 50px;
    margin: 60px 5%;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.cta-section-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-section-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-layout {
    margin: 40px 5%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--bg-light);
}

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

.contact-note-section {
    margin: 40px 5%;
}

.note-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.note-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.note-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-section {
    margin: 60px 5%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.thanks-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.btn-back,
.btn-services {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-back:hover {
    background-color: var(--secondary-color);
}

.btn-services {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-services:hover {
    background-color: var(--border-color);
}

.thanks-image {
    flex: 1;
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--bg-light);
}

.thanks-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.legal-page {
    margin: 40px 5%;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 60px 80px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-heading {
        font-size: 28px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 32px;
    }

    .trust-card {
        padding: 32px;
    }

    .content-card-large {
        padding: 32px;
    }

    .service-detail-content {
        padding: 32px;
    }

    .legal-content {
        padding: 40px 32px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}