.about-container{
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    /*border: 1px solid rgb(75, 234, 229);*/
    border: 3px solid #ba505e;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d55566;
    display: block;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3
{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d55566;
}

