/* About Section */
.about-container {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    /* Relative gap */
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 5% 10%;
    /* Relative padding */
}

.about-content {
    flex: 1;
    max-width: 60%;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* Relative gap */
    margin-top: 2rem;
    /* Relative margin */
}

.about-content h2 {
    font-size: 3rem;
    /* Relative font size */
    margin-bottom: 1rem;
    /* Relative margin */
}

.about-content p {
    font-size: 1.4rem;
    /* Relative font size */
    line-height: 1.6;
    margin-bottom: 2rem;
    /* Relative margin */
}

.stat .count {
    font-size: 2.25rem;
    /* Relative font size */
    font-weight: bold;
    color: var(--primary-color);
}

.mini-map {
    flex: 1;
    max-width: 55%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#SE,
#IQ,
.Indonesia {
    fill: var(--primary-color);
}

#SE:hover,
#IQ:hover,
.Indonesia:hover {
    fill: var(--accent-color);
}