/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

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

.page-terms-conditions__content-section h3 {
    font-size: 1.5em;
    color: #0056b3; /* Darker shade of main color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__content-section p {
    margin-bottom: 15px;
    color: #333;
}

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

.page-terms-conditions__content-section ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333;
}

.page-terms-conditions__content-section li {
    margin-bottom: 8px;
}

.page-terms-conditions__brand-name {
    font-weight: bold;
    color: #007bff;
}

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

/* Call to Action Section */
.page-terms-conditions__cta {
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-terms-conditions__cta-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-terms-conditions__cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-terms-conditions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.page-terms-conditions__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #000000; /* High contrast for text */
    border: 2px solid #ffc107;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e0a800; /* Darker shade on hover */
    border-color: #e0a800;
}

.page-terms-conditions__btn--secondary {
    background-color: #0056b3; /* Darker main color */
    color: #ffffff;
    border: 2px solid #0056b3;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #003f80;
    border-color: #003f80;
}

.page-terms-conditions__btn--outline {
    background-color: transparent;
    color: #ffc107; /* Auxiliary color for text */
    border: 2px solid #ffc107;
}

.page-terms-conditions__btn--outline:hover {
    background-color: #ffc107;
    color: #000000; /* Black for contrast */
}

/* Responsive Design */
@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__content-section h3 {
        font-size: 1.3em;
    }

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

    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-terms-conditions__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero,
    .page-terms-conditions__content-section,
    .page-terms-conditions__cta {
        padding: 40px 0;
    }

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

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

    .page-terms-conditions__btn {
        width: 90%;
    }
}