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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.main-nav {
    background-color: #1a202c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.ad-notice {
    font-size: 11px;
    color: #cbd5e0;
    background-color: #2d3748;
    padding: 5px 12px;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #90cdf4;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
}

.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: 300px;
    font-size: 14px;
}

.cookie-content a {
    color: #90cdf4;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.hero-magazine {
    background-color: #f7fafc;
    padding: 80px 20px;
}

.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.hero-text-large {
    flex: 1;
    min-width: 400px;
}

.hero-text-large h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.hero-image-overlay {
    flex: 1;
    min-width: 350px;
}

.hero-image-overlay img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-columns {
    padding: 80px 20px;
    background-color: #ffffff;
}

.col-left-narrow {
    flex: 1;
    min-width: 280px;
}

.col-right-wide {
    flex: 2;
    min-width: 400px;
}

.col-text-wide {
    flex: 2;
    min-width: 400px;
}

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

.col-image-left {
    flex: 1;
    min-width: 350px;
}

.col-text-right {
    flex: 1.2;
    min-width: 400px;
}

.col-text-left {
    flex: 1.2;
    min-width: 400px;
}

.col-image-right {
    flex: 1;
    min-width: 350px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.featured-insight {
    padding: 100px 20px;
    background-color: #edf2f7;
}

.insight-box {
    background-color: #ffffff;
    padding: 60px;
    border-left: 5px solid #4299e1;
}

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

.insight-item {
    flex: 1;
    min-width: 280px;
}

.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-header-offset {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.services-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.service-card {
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

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

.service-header h3 {
    margin-bottom: 0;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
}

.btn-service {
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2b6cb0;
}

.case-study-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #edf2f7;
    border-radius: 8px;
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 15px;
}

.author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.approach-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

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

.approach-block {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.cta-section-offset {
    padding: 100px 20px;
    background-color: #2c5282;
    color: #ffffff;
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #38a169;
}

.about-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.final-cta {
    padding: 80px 20px;
    background-color: #edf2f7;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    margin: 20px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    color: #718096;
    cursor: pointer;
}

.close-modal:hover {
    color: #2d3748;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 35px;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

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

.footer-col p {
    color: #cbd5e0;
    font-size: 14px;
}

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

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

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

.footer-col ul li a:hover {
    color: #90cdf4;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

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

.disclaimer {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #2d3748;
    border-radius: 5px;
    font-size: 12px;
}

.page-header {
    padding: 80px 20px 60px;
    background-color: #edf2f7;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
}

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

.service-detail-content {
    max-width: 900px;
}

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

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2b6cb0;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.services-cta {
    padding: 80px 20px;
    background-color: #f7fafc;
    text-align: center;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-approach {
    padding: 80px 20px;
    background-color: #edf2f7;
}

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

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

.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.experience-numbers {
    padding: 80px 20px;
    background-color: #2c5282;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

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

.number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #90cdf4;
    margin-bottom: 10px;
}

.number-item p {
    color: #e2e8f0;
    font-size: 18px;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-cta {
    padding: 80px 20px;
    background-color: #edf2f7;
    text-align: center;
}

.contact-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-details {
    flex: 1;
    min-width: 350px;
}

.contact-image {
    flex: 1;
    min-width: 350px;
}

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

.contact-message {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: #edf2f7;
    border-radius: 8px;
}

.thanks-image {
    margin: 40px auto;
    max-width: 400px;
}

.thanks-next-steps {
    text-align: left;
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-next-steps ol {
    margin-top: 20px;
    padding-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #4a5568;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #2d3748;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #4a5568;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: #f7fafc;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th {
    background-color: #edf2f7;
    font-weight: 600;
    color: #2d3748;
}

.data-table td {
    color: #4a5568;
}

.no-link {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-text-large h1 {
        font-size: 38px;
    }

    .lead {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-main {
        flex-direction: column;
    }

    .hero-text-large,
    .hero-image-overlay {
        min-width: 100%;
    }

    .container-magazine {
        flex-direction: column;
    }

    .col-left-narrow,
    .col-right-wide,
    .col-text-wide,
    .col-image-narrow,
    .col-image-left,
    .col-text-right,
    .col-text-left,
    .col-image-right {
        min-width: 100%;
    }

    .insight-box {
        padding: 30px 20px;
    }

    .number {
        font-size: 42px;
    }

    .modal-content {
        padding: 25px;
    }

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

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