.about {
    display: flex;
    justify-content: center;

    padding: 120px 30px;
}

.about h1 {
    color: white;

    font-size: 3.5rem;
    font-weight: 700;

    margin-bottom: 40px;
}

.about p {
    color: rgba(255, 255, 255, 0.9);

    font-size: 1.25rem;
    line-height: 1.8;

    margin-bottom: 25px;
}

.about-content {
    max-width: 800px;
}

.about-button {
    display: inline-block;

    margin-top: 20px;
    padding: 14px 28px;

    background: rgba(20, 30, 60, 0.5);

    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;

    border-radius: 9999px;
}

.about-button:hover {
    transform: translateX(10px);
}

.button-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}