* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #2a9d8f;
    --secondary: #264653;
    --accent: #e9c46a;
    --light: #f1faee;
    --dark: #1a1f29;
}

body {
    background: linear-gradient(to bottom, var(--secondary), var(--dark));
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(26, 31, 41, 0.9);
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

h1 {
    color: var(--accent);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tagline {
    color: var(--primary);
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    background-color: rgba(241, 250, 238, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.problem-box, .solution-box {
    flex: 1;
    min-width: 300px;
    background: rgba(38, 70, 83, 0.6);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    background: rgba(233, 196, 106, 0.1);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.problem-list li {
    border-left: 3px solid #e76f51;
}

.icon {
    font-size: 1.2rem;
    margin-right: 10px;
    color: var(--accent);
}

.problem-list .icon {
    color: #e76f51;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(42, 157, 143, 0.2);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light);
}

.action-section {
    text-align: center;
    padding: 40px;
    background: rgba(26, 31, 41, 0.8);
    border-radius: 10px;
    margin: 30px 0;
}

.action-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.custom-button:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom-button i {
    margin-right: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    background-color: var(--dark);
    border-top: 1px solid var(--secondary);
    font-size: 0.9rem;
    color: #888;
    margin-top: 40px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        flex-direction: column;
    }
    
    .problem-box, .solution-box {
        min-width: 100%;
    }
    
    .stats {
        flex-direction: column;
    }
}