/* Team Page Specific Styles */

/* Team Section */
.greenworld-team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-team-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, box-shadow 0.3s ease;
    text-align: center;
}

.greenworld-team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.greenworld-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.greenworld-team-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #424242;
}

.greenworld-team-position {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-team-description {
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.greenworld-certifications-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-certification-card {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-certification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.greenworld-certification-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.greenworld-certification-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Culture Section */
.greenworld-culture-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-culture-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-culture-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.greenworld-culture-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-culture-desc {
    color: #757575;
    line-height: 1.6;
}

/* Contact Section */
.greenworld-contact-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.greenworld-contact-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #424242;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greenworld-team-grid,
    .greenworld-certifications-grid,
    .greenworld-culture-grid {
        grid-template-columns: 1fr;
    }
}
