:root {
    --primary-color: #1a5276;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


/* Main Content Styles */


.content-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.content-card h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
    letter-spacing: 1.2px;
}

.content-card p {
    margin-bottom: 15px;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-card li {
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}




.banners-container {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.banner-card {
    background-color: white;
    border-radius: 0px 0px var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.banner-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    /* transform: translateY(-5px); */
}

.banner-preview {
    display: flex;
    justify-content: center;
}

.banner {
    width: 100%;
    border-radius: 0px 0px var(--border-radius) var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 180px 20px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 2.6rem;
    margin-bottom: 35px;
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
    opacity: 0.9;
}

/* Terms & Conditions Banner */
.terms-banner {
    background: linear-gradient(135deg, #1a5276, #3498db);
}

/* Privacy Policy Banner */
.privacy-banner {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

/* Refund Policy Banner */
.refund-banner {
    background: linear-gradient(135deg, #16a085, #3498db);
}


/* Responsive Design */
@media (max-width: 768px) {
    .banners-container {
        grid-template-columns: 1fr;
    }

    .banner-title {
        font-size: 1.7rem;
    }
}