#about {
    padding: 0;
}

#about h1, #about h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#about h1 {
    color: var(--indian-saffron);
    font-size: 3.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#about h2 {
    color: var(--indian-saffron);
    font-size: 3rem;
    margin-top: 0;
}

#about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.about-section {
    padding: 3rem 0;
}

.about-background {
    background-image: url('../images/about_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.about-background .container {
    position: relative;
    z-index: 1;
}

.about-background p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.about-section:nth-child(even):not(.about-background) {
    background-color: #e6e3e3;
}

.key-functions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.function-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.function-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.function-item h3 {
    color: var(--indian-green);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.function-item p {
    font-size: 1rem;
    line-height: 1.5;
}