/* style/terms-conditions.css */

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #2c2c2c, #1A1A1A);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-terms-conditions__article {
    background-color: #242424;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-heading {
    font-size: 2em;
    color: #FFD700; /* Gold for section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__article h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
}

.page-terms-conditions__article a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions__article a:hover {
    color: #ffe87a;
    text-decoration: underline;
}

.page-terms-conditions__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-section {
    background-color: #1A1A1A;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__cta-heading {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A;
}

.page-terms-conditions__button--primary:hover {
    background-color: #ffe87a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__button--download {
    background-color: #4CAF50; /* Green for download */
    color: #FFFFFF;
}

.page-terms-conditions__button--download:hover {
    background-color: #66BB6A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

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

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

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

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

    .page-terms-conditions__article h3 {
        font-size: 1.3em;
    }

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

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

    .page-terms-conditions__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

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

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

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

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

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

    .page-terms-conditions__article h3 {
        font-size: 1.2em;
    }

    .page-terms-conditions__cta-section {
        padding: 20px;
    }

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

    .page-terms-conditions__cta-text {
        font-size: 0.9em;
    }
}