:root {
    --primary-color: #0f62fe; /* Blue from button */
    --secondary-color: #00b894; /* Green for success */
    --accent-color: #1a73e8;
    --dark-bg: #111827; /* Dark footer */
    --light-bg: #f0fdf4; /* Light mint/greenish bg */
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --red-alert: #e74c3c;
    --gradient-start: #0f62fe;
    --gradient-end: #00b894;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f8fbff;
}

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

/* Typography */
h1, h2, h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(90deg, #0f62fe, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons & Badges */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb, #059669);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pill-badge, .pill-badge-blue, .pill-badge-green {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.pill-badge {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pill-badge-blue {
    background-color: #eff6ff;
    color: var(--primary-color);
}

.pill-badge-green {
    background-color: #dcfce7;
    color: #166534;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-card {
    background-color: #e0f2fe; /* Light blue bg from image */
    background: linear-gradient(135deg, #e0f7fa 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 16px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

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

.check-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.audience-card {
    padding: 40px;
    border-radius: 16px;
}

.for-who {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
}

.not-for-who {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.for-who .audience-header { color: #166534; }
.not-for-who .audience-header { color: #991b1b; }

.audience-card ul {
    list-style: none;
}

.audience-card li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.for-who li i { color: #166534; margin-top: 4px; }
.not-for-who li i { color: #991b1b; margin-top: 4px; }

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.step-item {
    padding: 20px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
}

.feature-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.icon-square {
    width: 40px;
    height: 40px;
    background-color: #0f62fe;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-square i {
    font-size: 1.1rem;
}

.feature-box:nth-child(2) .icon-square { background-color: #0ea5e9; }
.feature-box:nth-child(3) .icon-square { background-color: #0284c7; }
.feature-box:nth-child(4) .icon-square { background-color: #00b894; }
.feature-box:nth-child(5) .icon-square { background-color: #059669; }
.feature-box:nth-child(6) .icon-square { background-color: #0891b2; }

/* Credibility */
.credibility {
    background: linear-gradient(135deg, #2563eb, #0f766e);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.credibility h2 {
    color: white;
    margin-bottom: 40px;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cred-item i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cred-item p {
    color: rgba(255,255,255,0.8);
}

/* Guarantee */
.guarantee-section {
    padding: 80px 0;
}

.guarantee-box {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #0c4a6e;
}

.guarantee-header i {
    font-size: 2.5rem;
    color: #0284c7;
}

.guarantee-highlight {
    font-weight: 600;
    color: #0369a1;
    margin-top: 20px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 80px 0 100px;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.9rem;
}

.trust-badges i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.disclaimer-box {
    background-color: #1f2937;
    border: 1px solid #374151;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.disclaimer-title {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

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

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

.footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.policy-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.policy-content {
    flex: 1;
    padding-bottom: 80px;
}

.policy-content h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.policy-content p, .policy-content ul {
    margin-bottom: 15px;
    color: #475569;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .about-grid, .grid-2, .steps-grid, .credibility-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 25px;
    }
}
