/* style/terms-conditions.css */

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for readability on light background */
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Gradient with main brand color */
    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;
    font-weight: bold;
    color: #ffffff;
}

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

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

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

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

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

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #333333;
}

.page-terms-conditions__article strong {
    color: #007BFF;
}

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

.page-terms-conditions__list li {
    margin-bottom: 10px;
}

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

.page-terms-conditions__link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

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

.page-terms-conditions__cta-section {
    background-color: #e0f2ff; /* Light blue background */
    border-left: 5px solid #007BFF;
    padding: 30px;
    margin-top: 50px;
    border-radius: 8px;
    text-align: center;
}

.page-terms-conditions__cta-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary brand color */
    color: #333333; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    color: #000000; /* Ensure text remains dark */
}

.page-terms-conditions__additional-info {
    background-color: #007BFF; /* Main brand color background */
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
}

.page-terms-conditions__additional-info .page-terms-conditions__heading {
    color: #ffffff;
    border-bottom-color: #FFD700;
}

.page-terms-conditions__list--inline {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.page-terms-conditions__list--inline a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__list--inline a:hover {
    text-decoration: underline;
    color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }

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

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

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

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

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

    .page-terms-conditions__sub-heading {
        font-size: 1.3em;
    }

    .page-terms-conditions__list--inline {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

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

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

    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}