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

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

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text-overlay p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.story-intro {
    padding: 100px 20px;
    background: #f9f9f9;
}

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #444;
}

.visual-break {
    position: relative;
    margin: 0;
}

.image-full {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
}

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

.overlay-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
    background: rgba(0,0,0,0.6);
    padding: 30px 40px;
    backdrop-filter: blur(10px);
}

.overlay-caption h3 {
    font-size: 36px;
    font-weight: 700;
}

.problem-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-side p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.image-side {
    flex: 1;
    background: #f0f0f0;
}

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

.insight-visual {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.insight-visual h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.insight-visual p {
    font-size: 20px;
    margin-bottom: 60px;
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.testimonials-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.visual-break-two {
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background: #e0e0e0;
}

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

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

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

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #00a8ff;
    margin-bottom: 20px;
}

.btn-select {
    background: #0066cc;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background: #0052a3;
}

.form-section {
    padding: 100px 20px;
    background: #f0f0f0;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #0052a3;
}

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

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

.final-cta p {
    font-size: 20px;
    color: #ccc;
}

.footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

.cookie-content a {
    color: #00a8ff;
    text-decoration: underline;
}

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

.btn-accept {
    background: #00a8ff;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #0088cc;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.lead {
    font-size: 22px;
    font-weight: 300;
}

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.content-image {
    flex: 1;
    background: #f0f0f0;
}

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

.values-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-visual {
    padding: 100px 20px;
    background: #ffffff;
}

.team-visual h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-visual p {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.approach-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 12px;
}

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

.mission-section {
    padding: 100px 20px;
    background: #f0f0f0;
}

.mission-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.service-detail-image {
    flex: 1;
    background: #f0f0f0;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-badge {
    display: inline-block;
    background: #00a8ff;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00a8ff;
    font-weight: 700;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    padding: 14px 32px;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

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

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

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

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

.contact-message h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-message p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

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

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 20px;
    background: #f9f9f9;
}

.thanks-content {
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #00a8ff;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

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

.next-steps {
    padding: 100px 20px;
    background: #ffffff;
}

.next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 16px;
    color: #666;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

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

    .hero-text-overlay p {
        font-size: 18px;
    }

    .split-layout,
    .split-content,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .stat-grid {
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .contact-form {
        padding: 30px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}