/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #1a365d;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2c5282;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.cta-button-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #e6f3ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-headline {
    font-size: 36px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-text {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    background-color: #1a365d;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* Divider Section */
.divider {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.divider-icon {
    width: 60px;
    height: 60px;
    opacity: 0.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cta-subtext {
    font-size: 16px;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Trust Signal Section */
.trust-signal {
    padding: 40px 0;
    background-color: #1a365d;
    text-align: center;
}

.trust-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 14px;
    color: #a0aec0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.disclaimer-text {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.5;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta-button {
    display: block;
    width: 100%;
    background-color: #1a365d;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-text {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .value-proposition {
        padding: 60px 0;
    }
    
    .section-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-headline {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .cta-subtext {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .trust-text {
        font-size: 18px;
    }
    
    /* Show sticky CTA on mobile */
    .sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .section-headline {
        font-size: 24px;
    }
    
    .cta-headline {
        font-size: 22px;
    }
    
    .trust-text {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.value-content,
.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus styles for accessibility */
.cta-button:focus,
.footer-link:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .sticky-cta {
        display: none;
    }
    
    .hero {
        padding-top: 40px;
    }
}



/* Content Pages Styles */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 80px 0 40px;
}

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

.content-page h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a365d;
    margin: 32px 0 16px;
    line-height: 1.4;
}

.content-page h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2d3748;
    margin: 24px 0 12px;
    line-height: 1.4;
}

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

.content-page ul,
.content-page ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-page li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

.content-page a {
    color: #1a365d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-page a:hover {
    color: #2c5282;
}

.content-page strong {
    font-weight: 600;
    color: #2d3748;
}

/* Mobile styles for content pages */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 0 40px;
    }
    
    .content-page {
        padding: 20px 16px;
    }
    
    .content-page h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .content-page h2 {
        font-size: 22px;
        margin: 24px 0 12px;
    }
    
    .content-page h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
}


/* Content Pages Styles */
/* CTA Container Styles */
.hero-cta,
.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

/* Support Link Styles */
.support-link {
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #1a365d;
    text-decoration: none;
}

/* Mobile styles for CTA containers */
@media (max-width: 768px) {
    .hero-cta,
    .final-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .support-link {
        font-size: 14px;
    }
}

