.about-page {
    padding: 2rem;
    background: #f4f9f9;
    color: #333;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-y: auto;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: rgb(2, 109, 20);
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.hero p {
    font-size: 1.2rem;
    margin: 0;
    font-style: italic;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content div {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-grow: 1;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.content h2 {
    font-size: 1.8rem;
    color: rgb(2, 109, 20);
    margin-bottom: 1rem;
    border-bottom: 2px solid #81C784;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.values ul,
.achievements ul {
    list-style: none;
    padding: 0;
}

.values li,
.achievements li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values li::before,
.achievements li::before {
    content: '•';
    font-size: 1.5rem;
    color: #4CAF50;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 5%;
}
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .content div {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .content div {
        flex: 1 1 calc(33.33% - 1.5rem);
    }
}
