/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for body text */
    background-color: #f8f8f8;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #CC0000 0%, #660000 100%); /* Red gradient */
    color: #ffffff; /* White text on dark red background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: page-terms-conditions__bubble 15s infinite ease-in-out;
}

.page-terms-conditions__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
    animation: page-terms-conditions__bubble 10s infinite reverse ease-in-out;
}

@keyframes page-terms-conditions__bubble {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    50% { transform: scale(1.2) translate(20px, -20px); opacity: 0.6; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
}

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

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

.page-terms-conditions__section {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #CC0000; /* Primary red for section titles */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-terms-conditions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-terms-conditions__sub-title {
    font-size: 1.6em;
    color: #333333; /* Dark grey for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #CC0000;
    padding-left: 15px;
}

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

.page-terms-conditions strong {
    color: #CC0000;
}

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

.page-terms-conditions ul li {
    margin-bottom: 8px;
    color: #333333;
    font-size: 1.05em;
}

.page-terms-conditions__contact-info {
    padding: 40px 0 60px;
    text-align: center;
    background-color: #f0f0f0;
}

.page-terms-conditions__contact-link {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__contact-link:hover {
    color: #990000;
    text-decoration: underline;
}

/* Responsive Design */
@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__sub-title {
        font-size: 1.4em;
    }

    .page-terms-conditions p,
    .page-terms-conditions ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }

    .page-terms-conditions__title {
        font-size: 2em;
    }

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

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

    .page-terms-conditions__sub-title {
        font-size: 1.2em;
    }
}