/* About Page Styles */
.nav__logo {
    width: 32px;
    margin-left: 90px;
}

.about {
    padding: 4rem 0;
    min-height: 100vh;
}

.about__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210, 52%, 20%);
    text-align: center;
    margin-bottom: 3rem;
}

.about__section {
    margin-bottom: 3rem;
}

.about__subtitle {
    font-size: 1.5rem;
    color: hsl(210, 52%, 20%);
    margin-bottom: 1rem;
    
}

.about__text {
    color: hsl(210, 24%, 15%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: hsla(0, 0%, 100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210, 52%, 20%);
    text-align: center;
}

.feature__icon {
    font-size: 2.5rem;
    color: hsl(195, 100%, 30%);
    margin-bottom: 1rem;
}

.feature__title {
    color: hsl(210, 52%, 20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.feature__text {
    color: hsl(210, 24%, 15%);
    font-size: .9rem;
}

.about__cta {
    text-align: center;
    margin-top: 3rem;
}

.about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210, 55%, 20%), hsl(192, 62%, 25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210, 54%, 24%, .3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
    position: relative;
}

.about__button:hover {
    transform: translateY(-2px);
}

.activities__list,
.why__list {
   text-align: left;         
    padding-left: 1.2rem;     
    margin: 0;
}

.activity__item,



.why__item {
    color: hsl(210, 24%, 15%);
    margin-bottom: .5rem;
    line-height: 1.5;
}

.act_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .about__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .about__title {
        font-size: 1.8rem;
    }
}