/* style/terms-conditions.css */

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for main text on light background */
    background-color: #f8f8f8; /* Light background */
}

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

.page-terms-conditions__hero {
    background-color: #003366; /* Primary dark blue */
    color: #ffffff; /* White text on dark blue background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFCC00; /* Secondary gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-terms-conditions__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__content {
    padding: 60px 0;
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #003366; /* Primary dark blue */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFCC00; /* Secondary gold underline */
    padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
    font-size: 1.6em;
    color: #004488; /* Slightly lighter blue for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

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

.page-terms-conditions__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__image--left {
    float: left;
    margin-right: 30px;
}

.page-terms-conditions__image--right {
    float: right;
    margin-left: 30px;
}

.page-terms-conditions__cta-group {
    clear: both;
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #cccccc;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
}

.page-terms-conditions__btn--primary {
    background-color: #FFCC00; /* Secondary gold */
    color: #003366; /* Dark blue text for contrast */
    border: 2px solid #FFCC00;
}

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

.page-terms-conditions__btn--secondary {
    background-color: #003366; /* Primary dark blue */
    color: #FFCC00; /* Gold text for contrast */
    border: 2px solid #003366;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-terms-conditions__hero-title {
        font-size: 2.5em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__sub-section-title {
        font-size: 1.4em;
    }
    .page-terms-conditions__image--left, .page-terms-conditions__image--right {
        float: none;
        margin: 20px auto;
        display: block;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }
    .page-terms-conditions__hero-title {
        font-size: 2em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__content {
        padding: 40px 0;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__sub-section-title {
        font-size: 1.2em;
    }
    .page-terms-conditions p, .page-terms-conditions ul li {
        font-size: 0.95em;
    }
    .page-terms-conditions__btn {
        padding: 12px 25px;
        font-size: 1em;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 40px 0;
    }
    .page-terms-conditions__hero-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-terms-conditions__content {
        padding: 30px 0;
    }
    .page-terms-conditions__section-title {
        font-size: 1.3em;
    }
    .page-terms-conditions__sub-section-title {
        font-size: 1.1em;
    }
    .page-terms-conditions p, .page-terms-conditions ul li {
        font-size: 0.9em;
    }
    .page-terms-conditions__btn {
        width: 90%;
        max-width: 300px;
    }
}