* {
    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;
}

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

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

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

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.info-section,
.approach-section,
.mission-section,
.values-section,
.location-section,
.contact-section {
    padding: 80px 0;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 8px;
}

.content-right h2,
.content-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-right p,
.content-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

blockquote {
    background-color: #ffffff;
    padding: 25px;
    border-left: 4px solid #3498db;
    margin-bottom: 25px;
    border-radius: 4px;
}

blockquote p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 10px;
}

cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

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

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 30px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.step-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-benefits {
    margin-top: 25px;
}

.benefit-item {
    padding: 10px 0;
    color: #27ae60;
    font-weight: 500;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.disclaimer-box p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-alt {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #6c7a89;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.about-intro,
.experience-section {
    padding: 80px 0;
}

.value-list {
    list-style: none;
    margin-top: 20px;
}

.value-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
}

.value-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.expertise-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.expertise-card p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    margin-top: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
}

.contact-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
    margin-top: 30px;
}

.contact-note p {
    color: #856404;
    margin: 0;
}

.access-list {
    list-style: none;
    margin-top: 20px;
}

.access-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

.access-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.thanks-hero {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
}

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

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-info {
    max-width: 700px;
    margin: 40px auto;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 15px;
}

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

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.legal-page {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .nav {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 15px;
    }

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

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

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

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

    .header-content {
        justify-content: center;
        text-align: center;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

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

    .content-right h2,
    .content-left h2 {
        font-size: 28px;
    }

    .services-preview h2 {
        font-size: 30px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }
}