/* About Page Specific Styles */

/* About Section */
.greenworld-about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-about-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.greenworld-about-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.greenworld-about-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-about-desc {
    color: #757575;
    line-height: 1.6;
}

/* Subpages Section */
.greenworld-subpages-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-subpages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-subpage-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.greenworld-subpage-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-subpage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.greenworld-subpage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-subpage-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.greenworld-subpage-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.greenworld-subpage-link:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(46, 125, 50, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greenworld-about-grid,
    .greenworld-subpages-grid {
        grid-template-columns: 1fr;
    }
}
