/* css/company.css */

#company-intro {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

#company-intro h2 {
    text-align: center;
    margin-bottom: 20px;
}

#company-intro p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

#company-values {
    padding: 20px 0;
    text-align: center;
}

#company-values h2 {
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-item img {
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    margin-bottom: 15px;
}

.value-item h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
    color: #3498db;
} 