* {
    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: #2d3748;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #4299e1;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

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

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

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

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.ad-disclosure {
    padding: 0.4rem 0.8rem;
    background: #fed7d7;
    color: #742a2a;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43,108,176,0.85), rgba(26,32,44,0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #fff;
    max-width: 900px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #e2e8f0;
    max-width: 700px;
}

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 1.7rem;
    margin: 2.5rem 0 1rem;
    color: #2d3748;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.insight-visual {
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2b6cb0;
}

.benefit-card p {
    color: #4a5568;
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: #edf2f7;
}

.testimonial {
    background: #fff;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2b6cb0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    color: #718096;
    font-style: normal;
}

.solution-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.wide-content {
    max-width: 1300px;
    margin: 0 auto;
}

.wide-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.solution-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 2rem;
}

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

.card-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #2b6cb0;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #2c5282;
}

.trust-section {
    padding: 5rem 2rem;
    background: #2d3748;
    color: #fff;
}

.trust-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.trust-section p {
    color: #e2e8f0;
}

.form-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #48bb78;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #38a169;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef5e7;
    border-left: 4px solid #f59e0b;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .content-wrapper {
        flex-direction: column;
    }

    .solution-card {
        flex: 0 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}