/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A192F; /* Primary background color */
    line-height: 1.6;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A2B47 100%); /* Darker gradient for hero */
    padding: 80px 20px;
    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,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-terms-conditions__section:last-of-type {
    border-bottom: none;
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    line-height: 1.2;
}

.page-terms-conditions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-terms-conditions ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-terms-conditions ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-terms-conditions .highlight {
    color: #FFD700;
}

.page-terms-conditions .keyword {
    font-weight: bold;
    color: #FFD700;
}

.page-terms-conditions a {
    color: #FFD700; /* Links in gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
    color: #f7e18b; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-terms-conditions__image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__image--small {
    max-width: 600px;
}

.page-terms-conditions__image--medium {
    max-width: 800px;
}

.page-terms-conditions__cta {
    background-color: #1A2B47; /* Slightly lighter dark blue for CTA */
    padding: 80px 20px;
    text-align: center;
    margin-top: 40px;
}

.page-terms-conditions__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__cta-description {
    font-size: 1.2em;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.page-terms-conditions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__btn--primary:hover {
    background-color: #f7e18b; /* Lighter gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-terms-conditions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions p,
    .page-terms-conditions ul li {
        font-size: 1em;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-terms-conditions__cta-description {
        font-size: 1em;
    }
    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-terms-conditions__btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__hero,
    .page-terms-conditions__section,
    .page-terms-conditions__cta {
        padding: 40px 15px;
    }
}