/* css/style.css */

:root {
    --primary: #1a237e;
    --primary-light: #534bae;
    --secondary: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --light: #f5f5f5;
    --dark: #212121;
    --gray: #757575;
    --border-radius: 10px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f9f9f9;
}

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

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* STORY SECTION */
.story {
    margin: 60px 0;
}

.story h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    font-size: 2rem;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

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

.story-card.warning {
    border-left-color: var(--warning);
}

.story-card.success {
    border-left-color: var(--secondary);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.story-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* STRATEGY SECTION */
.current-strategy {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.current-strategy h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.strategy-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.strategy-card:hover {
    background: white;
    box-shadow: var(--box-shadow);
}

.strategy-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
    border-radius: var(--border-radius);
    margin: 60px 0;
}

.cta-section h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: var(--primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.3);
}

.disclaimer-small {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .story-card, .current-strategy {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
}