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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    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: #1a365d;
}

.ad-notice {
    font-size: 11px;
    color: #718096;
    padding: 4px 8px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #f7fafc;
}

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

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

.main-nav a:hover {
    color: #2d3748;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a202c;
    cursor: pointer;
}

.insight-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

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

.content-left h2,
.content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    line-height: 1.3;
}

.content-left p,
.content-right p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.problem-section {
    padding: 100px 0;
    background-color: #edf2f7;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    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 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a202c;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4a5568;
    font-size: 16px;
}

.price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
}

.select-service {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 14px 24px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a202c;
    cursor: pointer;
}

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

.modal.hidden {
    display: none;
}

.modal:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #718096;
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    margin-bottom: 24px;
    font-size: 28px;
    color: #1a202c;
}

.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: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.service-display {
    padding: 12px;
    background-color: #edf2f7;
    border-radius: 6px;
    font-weight: 600;
    color: #2d3748;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a202c;
    cursor: pointer;
}

.testimonials {
    padding: 100px 0;
    background-color: #edf2f7;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2d3748;
}

.testimonial p {
    font-size: 18px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 16px;
}

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

.final-cta {
    padding: 100px 0;
    background-color: #2d3748;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #edf2f7;
    cursor: pointer;
}

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

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

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

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

.footer-col p {
    color: #a0aec0;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    padding: 10px 24px;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #38a169;
    cursor: pointer;
}

.btn-secondary {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a202c;
    cursor: pointer;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero .subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.methodology {
    padding: 100px 0;
    background-color: #edf2f7;
}

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

.method-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.method-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.method-block p {
    color: #4a5568;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values {
    padding: 100px 0;
    background-color: #edf2f7;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

.services-full {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 80px;
}

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

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
}

.service-info ul {
    margin: 20px 0 32px 20px;
    color: #4a5568;
}

.service-info ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.comparison-note {
    padding: 100px 0;
    background-color: #edf2f7;
}

.comparison-note h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.comparison-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.comparison-item p {
    color: #4a5568;
    font-weight: 600;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-note {
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    color: #4a5568;
}

.faq-section {
    padding: 100px 0;
    background-color: #edf2f7;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 24px;
    color: #48bb78;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #edf2f7;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: left;
}

.thanks-details p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.step {
    flex: 1;
    background-color: #edf2f7;
    padding: 24px;
    border-radius: 8px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: #4a5568;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background-color: #edf2f7;
    font-weight: 600;
    color: #1a202c;
}

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

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

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