/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-terms-conditions__hero {
    position: relative;
    background-color: #1A2B4C; /* RIKVIP Blue */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #FFD700; /* Victory Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-terms-conditions__section {
    padding: 40px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__container {
    max-width: 960px;
    margin: 0 auto;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #1A2B4C; /* RIKVIP Blue */
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700; /* Victory Gold accent */
    padding-bottom: 10px;
}

.page-terms-conditions h3 {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.page-terms-conditions li {
    margin-bottom: 8px;
    color: #444;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Victory Gold */
    color: #1A2B4C; /* RIKVIP Blue for contrast */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200; /* Darker gold */
    color: #0d1a2f; /* Darker blue */
}

.page-terms-conditions__button--secondary {
    background-color: #1A2B4C; /* RIKVIP Blue */
    color: #FFD700; /* Victory Gold for contrast */
    border: 2px solid #1A2B4C;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #0d1a2f; /* Darker blue */
    color: #fff;
}

.page-terms-conditions__link {
    color: #1A2B4C;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-terms-conditions__icon,
.page-terms-conditions__illustration {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

    .page-terms-conditions__hero-subtitle {
        font-size: 1em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }

    .page-terms-conditions h3 {
        font-size: 1.3em;
    }

    .page-terms-conditions__section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero-title {
        font-size: 1.8em;
    }

    .page-terms-conditions__hero-subtitle {
        font-size: 0.9em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }

    .page-terms-conditions h3 {
        font-size: 1.2em;
    }

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}