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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

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

.page-terms-conditions__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 10px;
    font-size: 1.0em;
}

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

.page-terms-conditions__contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

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

.page-terms-conditions__cta-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.page-terms-conditions__cta-section p {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 0 10px;
    min-width: 200px;
    text-align: center;
}

.page-terms-conditions__btn--primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-terms-conditions__btn--secondary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

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

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

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

    .page-terms-conditions__article {
        padding: 20px;
    }

    .page-terms-conditions__btn {
        padding: 12px 20px;
        font-size: 1em;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }

    .page-terms-conditions__cta-section {
        flex-direction: column;
    }
}

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

    .page-terms-conditions__heading {
        font-size: 1.4em;
    }

    .page-terms-conditions__article p,
    .page-terms-conditions__article ul li {
        font-size: 0.95em;
    }
}