* {
    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: #2C3E50;
    background-color: #FFFFFF;
}

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

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

.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7F8C8D;
    background-color: #ECF0F1;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.nav a {
    color: #2C3E50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3498DB;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 62, 80, 0.85);
    width: 100%;
    padding: 100px 0;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ECF0F1;
    max-width: 600px;
}

.intro-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C3E50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visual-break {
    padding: 100px 0;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.services-preview {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #2C3E50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #7F8C8D;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    max-width: 380px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2C3E50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #7F8C8D;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27AE60;
    margin: 0 25px 20px;
}

.btn-select {
    background-color: #3498DB;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    margin: 0 25px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980B9;
}

.form-section {
    padding: 90px 0;
    background-color: #F8F9FA;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2C3E50;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 17px;
    color: #7F8C8D;
}

.lead-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.selected-service {
    background-color: #E8F5E9;
    border-left: 4px solid #27AE60;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2C3E50;
    display: none;
}

.selected-service.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C3E50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498DB;
}

.btn-submit {
    background-color: #27AE60;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-section {
    padding: 90px 0;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 500;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #F8F9FA;
}

.disclaimer {
    font-size: 13px;
    color: #7F8C8D;
    line-height: 1.6;
    border-left: 3px solid #E67E22;
    padding-left: 20px;
}

.footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #BDC3C7;
}

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

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

.footer-col ul li a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498DB;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95A5A6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498DB;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27AE60;
    color: #FFFFFF;
}

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

.btn-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

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

.page-hero {
    padding: 80px 0;
    color: #FFFFFF;
}

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

.page-hero p {
    font-size: 18px;
}

.content-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2C3E50;
}

.value-item {
    margin-bottom: 50px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C3E50;
}

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

.team-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2C3E50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

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

.stats-section {
    padding: 80px 0;
}

.stats-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498DB;
}

.stat-label {
    font-size: 16px;
}

.cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #7F8C8D;
}

.btn-primary {
    display: inline-block;
    background-color: #3498DB;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 17px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980B9;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498DB;
    padding: 15px 40px;
    font-size: 17px;
    text-decoration: none;
    border: 2px solid #3498DB;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498DB;
    color: #FFFFFF;
}

.services-detail {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.service-detail-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: #2C3E50;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: #27AE60;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2C3E50;
}

.service-detail-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-text ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.pricing-info {
    padding: 60px 0;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.pricing-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

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

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2,
.contact-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C3E50;
}

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

.contact-note {
    font-size: 14px;
    color: #7F8C8D;
    margin-top: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 16px;
    text-align: center;
    color: #2C3E50;
}

.contact-cta {
    padding: 80px 0;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-cta .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2C3E50;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2C3E50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27AE60;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #555;
}

.service-confirmation {
    background-color: #E8F5E9;
    border-left: 4px solid #27AE60;
    padding: 20px 30px;
    margin: 40px 0;
    text-align: left;
    font-size: 17px;
    color: #2C3E50;
    display: none;
}

.service-confirmation.active {
    display: block;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    font-size: 17px;
    line-height: 2;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 700;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.legal-updated {
    font-size: 14px;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2C3E50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2C3E50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

.legal-page a {
    color: #3498DB;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980B9;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #E0E0E0;
}

.cookies-table th {
    background-color: #F8F9FA;
    font-weight: 600;
    color: #2C3E50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

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

    .hero-subtitle {
        font-size: 17px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
    }

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions a {
        text-align: center;
    }
}