.executives-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/bg/bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.executives-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #60cb30;
}

.executives-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.executives-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.executive-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;    
    width: 100%;
}

.executive-card:hover {
    transform: translateY(-10px);
}

.executive-image {
    height: 300px;
    overflow: hidden;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.05);
}

.executive-info {
    padding: 20px;
    text-align: center;
}

.executive-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.executive-position {
    color: #ff014f;
    font-weight: bold;
    margin-bottom: 15px;
}

.executive-bio {
    display: none;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info {
    display: none;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #60cb30;
}

@media (max-width: 768px) {
    .executives-hero {
        padding: 80px 0;
    }

    .executives-hero h1 {
        font-size: 2rem;
    }

    .executives-grid {
        grid-template-columns: unset;
        max-width: 300px;
    }
}
