/** terms & conditions page **/

.custom-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.custom-bullet-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme-color);
    font-size: 14px;
}

.terms-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--theme-color);
    position: relative;
}

.terms-section h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-color-2);
}

.terms-section p {
    margin-bottom: 12px;
    text-align: justify;
    line-height: 1.7;
}

.terms-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-header p {
    margin-bottom: 10px;
}

.terms-header .mt_20 {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
}

.terms-contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.terms-contact-info:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color-2));
    border-radius: 4px 0 0 4px;
}

.terms-contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.terms-contact-info p:last-child {
    margin-bottom: 0;
}

.terms-contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.terms-contact-info a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}

.alert-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(120, 235, 84, 0.15);
}

.alert-notice:before {
    content: '\f071';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--theme-color-2);
    font-size: 18px;
}

.alert-notice p {
    margin: 0;
    margin-left: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 40px;
}

.terms-footer p {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .terms-header h2 {
        font-size: 1.8rem;
    }
    
    .custom-bullet-list li {
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    .terms-contact-info {
        padding: 20px;
    }
}