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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #1a4a80);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.page-terms-conditions__title .highlight {
    color: #FFCC00;
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    font-weight: 300;
    color: #e0e0e0;
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-terms-conditions__section-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid #003366;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__section-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-terms-conditions__section-block p:last-child {
    margin-bottom: 0;
}

.page-terms-conditions__section-block .highlight {
    font-weight: bold;
    color: #003366;
}

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

.page-terms-conditions__link--inline:hover {
    color: #FFCC00;
    text-decoration: none;
}

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    margin-right: 15px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.7em;
    }
    .page-terms-conditions__section-block {
        padding: 25px;
    }
    .page-terms-conditions__btn {
        padding: 10px 20px;
        font-size: 0.95em;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 15px;
    }
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__section-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-terms-conditions__btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}