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

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    background: linear-gradient(90deg, #ff8a65, #ffcc80);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #bdbdbd;
}

section {
    background-color: #1e1e1e;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #64b5f6, #ff8a65);
    -webkit-background-clip: text;
    color: transparent;
}

.statistics p,
.chart-info {
    color: #b2dfdb;
    line-height: 1.6;
    font-weight: bold;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}


.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 10px;
    height: 200px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.bar {
    width: 45%;
    position: relative;
    background-color: #ff8a65;
    border-radius: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    height: 0;
    transition: height 1.5s ease-out;
}

.bar.male {
    background-color: #64b5f6;
}

.bar span {
    position: absolute;
    bottom: -20px;
    color: #fff;

}

@media (prefers-reduced-motion: no-preference) {
    .fade-in.scrolled {
        opacity: 1;
        transform: translateY(0);
    }
}

.images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.images img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ddd;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.images img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

