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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5282;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #4a5568;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2c5282;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
}

.insight-split {
    display: flex;
    align-items: center;
}

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

.insight-image {
    flex: 1;
}

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

.insight-text {
    flex: 1;
    padding: 80px 60px;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.insight-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.problem-amplification {
    background-color: #f7fafc;
    padding: 100px 20px;
}

.problem-amplification h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.problem-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.7;
}

.story-split {
    display: flex;
    align-items: center;
    gap: 0;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: #1a202c;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: #4a5568;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

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

.cta-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 28px;
}

.benefits-split {
    display: flex;
    align-items: center;
}

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

.benefits-image {
    flex: 1;
}

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

.benefits-content {
    flex: 1;
    padding: 80px 60px;
}

.benefits-content h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #1a202c;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding-left: 32px;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonials {
    background-color: #f7fafc;
    padding: 100px 20px;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    color: #2d3748;
    font-weight: 600;
    font-style: normal;
}

.services-reveal {
    padding: 100px 20px;
}

.services-reveal h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    width: calc(33.333% - 27px);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    padding: 24px 24px 12px;
    color: #2d3748;
}

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

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5282;
    padding: 12px 24px;
}

.service-card .select-service {
    width: 100%;
    padding: 16px;
    background-color: #2c5282;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #1e3a5f;
}

.trust-building {
    background-color: #f7fafc;
    padding: 100px 20px;
}

.trust-building h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5282;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3748;
}

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

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

.form-intro {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.main-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #2c5282;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5282;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
}

.final-cta {
    background-color: #1a202c;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.disclaimer-section {
    background-color: #f7fafc;
    padding: 60px 20px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #4a5568;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e0;
}

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

.footer-column ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(44, 82, 130, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
    background-color: #1e3a5f;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 80px 0;
}

.about-content {
    flex: 1;
    padding: 60px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

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

.values-split {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.values-image {
    flex: 1;
}

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

.values-content {
    flex: 1;
    padding: 60px;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.values-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 32px;
    color: #1a202c;
}

.team-section p {
    font-size: 1.05rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px;
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #4a5568;
}

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

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c5282;
    font-size: 1.4rem;
    line-height: 1.4;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 24px;
}

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

.contact-info {
    flex: 1;
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 60px;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #90cdf4;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.contact-form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.contact-form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
    color: #1a202c;
}

.thanks-section {
    padding: 120px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    margin-left: 40px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3a5f;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .insight-split,
    .story-split,
    .benefits-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .contact-form-split {
        flex-direction: column;
    }

    .hero-content,
    .insight-text,
    .story-content,
    .benefits-content,
    .about-content,
    .values-content,
    .service-detail-content,
    .form-intro,
    .form-container,
    .contact-info,
    .contact-form-container {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .problem-grid,
    .testimonial-grid,
    .process-steps {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .services-reveal h2,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .insight-text h2,
    .story-content h2,
    .benefits-content h2 {
        font-size: 1.8rem;
    }

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