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

.site-header {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #4a90e2;
}

.ad-notice {
    background-color: #2c2c2c;
    color: #ffd700;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 600px;
}

.hero-image-right {
    flex: 1;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

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

.story-section {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.story-content-right {
    flex: 1;
    padding: 5rem 4rem;
    order: 2;
}

.story-content-right h2 {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.story-image-left {
    flex: 1;
    background-color: #e5e7eb;
    order: 1;
    position: relative;
    overflow: hidden;
}

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

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-section-full {
    padding: 6rem 2rem;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
}

.insight-section-full h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #334155;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.solution-split {
    display: flex;
    align-items: center;
    min-height: 75vh;
}

.solution-image-left {
    flex: 1;
    background-color: #e5e7eb;
    order: 1;
    position: relative;
    overflow: hidden;
}

.solution-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.solution-content-right {
    flex: 1;
    padding: 5rem 4rem;
    order: 2;
    background-color: #f8fafc;
}

.solution-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.solution-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #059669;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}

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

.testimonials-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    text-align: left;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #f1f5f9;
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.service-item h3 {
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    padding: 0.5rem 1.5rem;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1d4ed8;
}

.select-service-btn.selected {
    background-color: #10b981;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e2e8f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #78350f;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #f8fafc;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.references-list {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
}

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

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

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .story-section,
    .solution-split {
        flex-direction: column;
    }

    .hero-content-left,
    .story-content-right,
    .solution-content-right {
        order: 1;
    }

    .hero-image-right,
    .story-image-left,
    .solution-image-left {
        order: 2;
        min-height: 400px;
    }

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

    .insight-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
}

.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.about-content-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.values-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.services-page-content {
    padding: 4rem 2rem 6rem;
    background-color: #ffffff;
}

.service-features {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-link-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-link-btn:hover {
    background-color: #1d4ed8;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #1e293b;
    text-align: center;
    color: #ffffff;
}

.services-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.contact-page-content {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-info-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-additional {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-additional h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-additional p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.contact-additional a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-color: #f8fafc;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-main-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-details p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.thanks-details strong {
    color: #2563eb;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem 6rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #334155;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #475569;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #444;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content-left {
        padding: 3rem 2rem;
    }

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

    .hero-content-left p {
        font-size: 1.05rem;
    }

    .story-content-right,
    .solution-content-right {
        padding: 3rem 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .page-hero-content p {
        font-size: 1.1rem;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }
}