/* Company Intro Page Specific Styles */

/* Company Story Section */
.greenworld-company-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-story-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-story-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.greenworld-story-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.greenworld-story-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-story-section p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.greenworld-story-section ul {
    color: #757575;
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 2rem;
}

.greenworld-story-section li {
    margin-bottom: 0.5rem;
}

.greenworld-story-section strong {
    color: #424242;
    font-weight: 600;
}

/* Company Values Section */
.greenworld-company-values {
    padding: 4rem 0;
    background: white;
}

.greenworld-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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-value-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-value-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-value-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-value-desc {
    color: #757575;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greenworld-story-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .greenworld-story-section h3 {
        font-size: 1.3rem;
    }
    
    .greenworld-values-grid {
        grid-template-columns: 1fr;
    }
}
