/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2463, #3A5A9D);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions__hero > .page-terms-conditions__container {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #E3B505; /* Wealth Gold for emphasis */
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Content section */
.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-terms-conditions__content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .page-terms-conditions__content-grid {
        grid-template-columns: 1fr;
    }
}

.page-terms-conditions__main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__article h2.page-terms-conditions__heading {
    font-size: 2em;
    color: #0A2463; /* Tech Blue for headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E3B505; /* Gold underline */
    padding-bottom: 10px;
}

.page-terms-conditions__article h2.page-terms-conditions__heading:first-of-type {
    margin-top: 0;
}

.page-terms-conditions__article h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #444;
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
}

.page-terms-conditions__link {
    color: #0A2463;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #E3B505;
}

/* Sidebar styles */
.page-terms-conditions__sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-terms-conditions__promo-card,
.page-terms-conditions__info-card {
    background-color: #f2f2f2;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #E3B505; /* Gold border top */
}

.page-terms-conditions__promo-title,
.page-terms-conditions__info-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
    text-align: center;
}

.page-terms-conditions__promo-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.page-terms-conditions__promo-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-terms-conditions__faq-list {
    list-style-type: none;
    padding: 0;
}

.page-terms-conditions__faq-list li {
    margin-bottom: 10px;
}

.page-terms-conditions__faq-list li a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
    transition: color 0.3s ease;
}

.page-terms-conditions__faq-list li a:hover {
    color: #E3B505;
    padding-left: 5px;
}

/* Buttons */
.page-terms-conditions__btn {
    display: block;
    width: fit-content;
    margin: 20px auto 10px auto;
    padding: 12px 25px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-terms-conditions__btn--primary {
    background-color: #E3B505; /* Wealth Gold */
    color: #0A2463; /* Tech Blue */
    border: 2px solid #E3B505;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #ffc926;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-terms-conditions__btn--secondary {
    background-color: #0A2463; /* Tech Blue */
    color: #E3B505; /* Wealth Gold */
    border: 2px solid #0A2463;
    margin-bottom: 10px;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #1a3c7c;
    color: #E3B505;
    transform: translateY(-2px);
}

.page-terms-conditions__promo-card .page-terms-conditions__btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Bottom CTA */
.page-terms-conditions__cta-bottom {
    background: linear-gradient(90deg, #0A2463, #1A3C7C);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #E3B505;
    margin-bottom: 15px;
}

.page-terms-conditions__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }

    .page-terms-conditions__subtitle,
    .page-terms-conditions__cta-text {
        font-size: 1em;
    }

    .page-terms-conditions__article h2.page-terms-conditions__heading {
        font-size: 1.7em;
    }

    .page-terms-conditions__main-content,
    .page-terms-conditions__promo-card,
    .page-terms-conditions__info-card {
        padding: 20px;
    }

    .page-terms-conditions__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-terms-conditions__hero,
    .page-terms-conditions__content-section,
    .page-terms-conditions__cta-bottom {
        padding: 40px 0;
    }
}