/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 4em 2em;
    text-align: center;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero-section span {
    color: #ffcc00;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.download-btn {
    background: #ffcc00;
    color: #333;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.download-btn:hover {
    background: #ffaa00;
}

/* Results Section */
.results-section {
    background: #fff;
    padding: 3em 2em;
    text-align: center;
}

.results-section h2 {
    font-size: 2.5em;
    color: #ff416c;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2em;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.results-table th, .results-table td {
    border: 1px solid #ccc;
    padding: 1em;
    text-align: center;
}

.results-table th {
    background: #ff416c;
    color: white;
    font-size: 1.2em;
}

.results-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Charts Section */
.charts-section {
    padding: 3em 2em;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
}

.charts-section h2 {
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    max-width: 600px;
    margin: 0 auto;
}

.chart-card {
    background: #ffcc00;
    padding: 1.5em;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.chart-card:hover {
    transform: translateY(-5px);
}

/* About and Contact Section */
.info-section {
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 3em 2em;
    background: #fff;
    flex-wrap: wrap;
}

.info-card {
    background: #ff4b2b;
    color: white;
    padding: 2em;
    border-radius: 8px;
    width: 45%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 2em;
}

.info-card p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.btn {
    background: #ffcc00;
    color: #333;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffaa00;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5em 0;
}

footer nav a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 1em;
    font-size: 1.1em;
}

footer nav a:hover {
    color: #ffaa00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

    .chart-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        width: 100%;
    }
}