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

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

.main-nav {
    background: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
}

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

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.insight-block {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

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

.centered-insight h2 {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: 700;
}

.centered-insight p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.visual-showcase {
    height: 70vh;
    overflow: hidden;
    background-color: #e0e0e0;
}

.visual-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-reveal {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrapper > p {
    font-size: 19px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #4a4a4a;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    background: #ffffff;
    width: 350px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.product-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
}

.product-cta {
    padding: 0 25px 25px;
}

.product-cta button {
    width: 100%;
    padding: 14px 24px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.product-cta button:hover {
    background: #1a252f;
}

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

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

.testimonial-block {
    margin-bottom: 50px;
    padding: 35px;
    background: #f8f9fa;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

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

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

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-primary {
    padding: 80px 20px;
    background: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content button {
    padding: 16px 45px;
    background: #ffffff;
    color: #2c3e50;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.cta-content button:hover {
    background: #f0f0f0;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    font-size: 15px;
    color: #2c3e50;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c3e50;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

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

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-buttons button:first-child {
    background: #2c3e50;
    color: #ffffff;
}

.cookie-buttons button:first-child:hover {
    background: #1a252f;
}

.cookie-buttons button:last-child {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-buttons button:last-child:hover {
    background: #d0d0d0;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
}

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-info .email-display {
    color: #2c3e50;
    font-weight: 500;
}

.about-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 1;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #1a252f;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .product-grid {
        gap: 25px;
    }

    .product-card {
        width: 100%;
    }

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

    .about-split {
        flex-direction: column;
    }

    .benefits-list {
        flex-direction: column;
    }
}