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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3a52;
    --accent-color: #4a7ba7;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px 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-white);
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    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;
    min-height: 70px;
}

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

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

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

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

.hero-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-content {
    flex: 1 1 500px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1 1 400px;
    padding: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

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

.why-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

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

.content-card h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

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

.service-card {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px 25px;
}

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

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

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

.select-service {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

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

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

.split-content {
    flex: 1 1 400px;
    padding: 50px;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.split-image {
    flex: 1 1 400px;
}

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

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

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

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

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

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

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

.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,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.disclaimer-card {
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

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

.footer-col ul li a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 10px 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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.mission-section,
.values-section,
.story-section,
.approach-detail,
.cta-section,
.why-choose,
.info-section,
.faq-section,
.services-full {
    padding: 60px 20px;
}

.mission-section {
    background-color: var(--bg-white);
}

.values-section {
    background-color: var(--bg-light);
}

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

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

.value-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

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

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

.story-section {
    background-color: var(--bg-white);
}

.approach-detail {
    background-color: var(--bg-light);
}

.approach-detail h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.approach-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.approach-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.cta-section {
    background-color: var(--bg-white);
}

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

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

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-card .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-card .cta-primary:hover {
    background-color: var(--bg-light);
}

.service-card-full {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: all 0.3s;
}

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

.service-image {
    flex: 1 1 350px;
}

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

.service-details {
    flex: 1 1 500px;
    padding: 40px;
}

.service-details h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

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

.service-details ul li {
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-details ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.contact-info-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card,
.location-card {
    flex: 1 1 400px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-card h2,
.location-card h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background-color: var(--bg-light);
}

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

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

.faq-card {
    flex: 1 1 280px;
    max-width: 550px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.thanks-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service {
    color: var(--text-dark);
    font-size: 1rem;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.step-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step-card {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: var(--bg-light);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.additional-info {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.info-card-small {
    flex: 1 1 300px;
    max-width: 450px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

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

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

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

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-card,
    .form-card {
        padding: 30px 25px;
    }

    .service-details {
        padding: 30px 25px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-cards,
    .testimonial-cards,
    .value-cards,
    .approach-cards {
        gap: 20px;
    }
}