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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #8ba89f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

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

.hero-card {
    background: var(--bg-white);
    margin: 32px 0;
}

.hero-overlay {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-content-card {
    padding: 64px 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-content-card p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image-card {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #234854;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 16px;
}

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

.intro-cards {
    padding: 64px 0;
    background: var(--bg-light);
}

.card-grid-3 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-3 > * {
    flex: 1;
    min-width: 280px;
}

.info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.info-card p {
    color: var(--text-light);
}

.services-section {
    padding: 64px 0;
    background: var(--bg-white);
}

.section-header-card {
    text-align: center;
    margin-bottom: 48px;
}

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

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

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

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

.btn-service:hover {
    background: #72917f;
    transform: translateY(-2px);
}

.testimonials-cards {
    padding: 64px 0;
    background: var(--bg-light);
}

.testimonials-cards h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.card-grid-2 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-2 > * {
    flex: 1;
    min-width: 320px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    margin-bottom: 24px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.form-section-card {
    padding: 64px 0;
    background: var(--bg-white);
}

.form-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-display {
    background: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.benefits-cards {
    padding: 64px 0;
    background: var(--bg-light);
}

.benefits-cards h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.card-grid-4 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-4 > * {
    flex: 1;
    min-width: 240px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 64px 0 24px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--secondary-color);
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    margin: 0;
}

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

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

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

.btn-cookie:first-child:hover {
    background: #234854;
}

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

.btn-cookie.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-header-card {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 64px 0;
    text-align: center;
}

.page-header-card h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header-card p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 64px 0;
    background: var(--bg-white);
}

.about-card-main {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.about-image {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.process-cards {
    padding: 64px 0;
    background: var(--bg-light);
}

.process-cards h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.process-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 240px;
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

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

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 64px 0;
    background: var(--bg-white);
}

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

.values-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
}

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

.value-card p {
    color: var(--text-light);
}

.stats-cards {
    padding: 64px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--bg-white);
    opacity: 0.9;
}

.services-detailed {
    padding: 64px 0;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 24px 0;
}

.contact-section {
    padding: 64px 0;
    background: var(--bg-white);
}

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

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

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

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

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

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-cards {
    padding: 64px 0;
    background: var(--bg-light);
}

.faq-cards h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
}

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

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 96px 0;
    background: var(--bg-white);
}

.thanks-card {
    background: var(--bg-light);
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.service-selected {
    background: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    color: var(--primary-color);
}

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

.legal-content {
    padding: 64px 0;
    background: var(--bg-white);
}

.legal-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-content-card h1 {
        font-size: 32px;
    }

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

    .nav-menu {
        gap: 16px;
    }

    .section-header-card h2,
    .testimonials-cards h2,
    .benefits-cards h2 {
        font-size: 28px;
    }

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

    .form-card {
        padding: 32px 24px;
    }

    .card-grid-3,
    .card-grid-2,
    .card-grid-4,
    .services-card-grid {
        flex-direction: column;
    }

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