.about-container {
    text-align: center;
    max-width: 800px;
    margin: 0px auto;
    padding: 62px;
    /* background: #fff; */
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.poke-ball {
    width: 80px;
    margin: 20px 0;
}

.cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #ff4444);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    /* font-weight: bold; */
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta:hover {
    background: linear-gradient(135deg, #ff4444, #ffcc00);
    color: #fff;
}