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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b5;
    --accent-color: #e8924a;
    --text-dark: #1a2332;
    --text-medium: #505867;
    --text-light: #7a8394;
    --bg-light: #f8f9fb;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --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;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.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);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 125, 0.85) 0%, rgba(74, 144, 181, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: #d47d38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-cards {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.info-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.services-showcase {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

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

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

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

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-includes li {
    color: var(--text-medium);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

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

.form-card h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 181, 0.1);
}

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

.btn-submit:hover {
    background-color: #d47d38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.features-alt {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.feature-cards-horizontal {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 25px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.cookie-btn.accept:hover {
    background-color: #d47d38;
    transform: translateY(-2px);
}

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

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

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

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.story-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-image {
    width: 45%;
    background-color: var(--bg-light);
}

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

.story-content {
    flex: 1;
    padding: 50px 40px 50px 0;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.value-card {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 35px 30px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-approach {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.approach-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    width: 45%;
    background-color: var(--bg-white);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d47d38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-detailed {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.contact-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.info-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.location-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.location-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-section p {
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
}

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

.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.next-steps {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.step-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.legal-page {
    padding: 60px 0 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .ad-label {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .card-grid {
        flex-direction: column;
    }

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

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-item img {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .story-card {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
        height: 300px;
    }

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

    .values-grid {
        flex-direction: column;
    }

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

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

    .approach-image {
        width: 100%;
    }

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

    .steps-grid {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}