:root {
    --primary-color: #39c5bb;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --header-bg: #39c5bb;
    --header-text: #ffffff;
    --button-bg: #d4d89b;
    --button-text: #837979;
    --section-bg: #ffffff;
}
.benefit-section {
    background-color: var(--section-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.benefit-section:hover {
    transform: translateY(-5px);
}

.benefit-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-top: 0;
}
.member-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.member-benefits h1.title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.member-benefits p.intro {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.benefit-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}
@media screen and (max-width: 768px) {
    .benefit-section {
        padding: 15px;
    }
    
    .member-benefits h1.title {
        font-size: 2em;
    }

    .benefit-section h2 {
        font-size: 1.5em;
    }

    .image-gallery img {
        height: 120px;
    }
}
