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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #2a2a3e;
    --border-color: #e0e0e0;
}

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

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

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

.header-main {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-color);
    letter-spacing: -0.5px;
}

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

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

.nav-primary a:hover,
.nav-primary a.active {
    color: var(--highlight-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--bg-color);
    padding: 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.hero-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-color);
    padding: 100px 0 80px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--highlight-color);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 180px;
}

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.problem-block {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.col-text,
.col-visual {
    flex: 1;
    min-width: 300px;
}

.col-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.col-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.visual-box {
    background-color: var(--bg-alt);
    padding: 40px;
    border-radius: 8px;
}

.data-point {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.data-point:last-child {
    margin-bottom: 0;
}

.data-point strong {
    font-size: 32px;
    color: var(--highlight-color);
    margin-bottom: 8px;
}

.data-point span {
    font-size: 15px;
    color: var(--text-light);
}

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

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.methodology-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.method-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.method-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.method-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--bg-alt);
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateX(5px);
}

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

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

.testimonial-block {
    background-color: var(--bg-color);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--highlight-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--highlight-color);
    color: var(--bg-color);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-color);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--bg-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.footer-main {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.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;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

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

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.expertise-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.expertise-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-alt);
    padding: 30px;
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--accent-color);
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

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

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

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

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

.value-block {
    flex: 1;
    min-width: 280px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--accent-color);
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--bg-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.service-detail-item {
    background-color: var(--bg-alt);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-detail-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-color);
}

.inquiry-cta {
    padding: 80px 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.inquiry-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.inquiry-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-item a {
    color: var(--highlight-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: var(--bg-alt);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

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

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--accent-color);
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.thanks-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-color);
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--highlight-color);
}

.next-steps {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 50px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.step-item:last-child {
    margin-bottom: 0;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

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

.additional-resources {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.additional-resources h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.additional-resources p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.resource-list {
    margin-left: 25px;
}

.resource-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.resource-list a {
    color: var(--highlight-color);
    text-decoration: none;
}

.resource-list a:hover {
    text-decoration: underline;
}

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

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-content a {
    color: var(--highlight-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-lead {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .nav-primary {
        gap: 20px;
        margin-top: 15px;
    }

    .two-col-layout {
        gap: 40px;
    }

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

    .service-detail-item {
        padding: 30px 20px;
    }

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

    .contact-grid {
        gap: 40px;
    }

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

    .next-steps {
        padding: 30px 20px;
    }

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