@import './commonStyle.css';


.header-container{
    background-color: #3a3a3a; 
    background-image: url('../img/membership.webp');
}
.membership-section {
    padding: 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 40px;
}

.membership-plan, 
.trial-option {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.membership-plan h3,
.trial-option h3 {
    color:var(--text-color-hover);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.price {
    color:var(--text-color-h2);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.membership-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.membership-plan li, 
.trial-option li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color-p);
    font-size: 14px;
}

.icon {
    color:var(--text-color-hover);
    margin-right: 8px;
    font-size: 16px;
}

.btn-select {
    background-color:var(--text-color-hover);
    color: #fff;
    margin: 0 auto;
    width: 40%;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #811c05;
}

.trial-section {
    margin-top: 4rem;
    padding: 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 40px;
}

.trial-plan {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trial-option{
    align-items: center;
}

@media (max-width: 768px) {
    .membership-section, .trial-section {
        padding: 1rem 2rem;
    }
    .btn-select {
        padding: 8px 16px;
        font-size: 14px;
    }
}
