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

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #FFD700, #000000);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-terms-conditions__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200;
    color: #333;
}

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

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

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

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

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

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

.page-terms-conditions__content-section a:hover {
    text-decoration: underline;
}

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

.page-terms-conditions__cta-box {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-terms-conditions__cta-box p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #333;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700;
    color: #000000;
    margin-right: 15px;
}

.page-terms-conditions__button--primary:hover {
    background-color: #e6c200;
    color: #333;
}

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

.page-terms-conditions__button--secondary:hover {
    background-color: #333;
    color: #fff;
}

.page-terms-conditions__button--contact {
    background-color: #000000;
    color: #FFD700;
    border: 1px solid #FFD700;
    margin-top: 20px;
}

.page-terms-conditions__button--contact:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@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__heading {
        font-size: 1.8em;
    }

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-terms-conditions__cta-box .page-terms-conditions__button {
        display: block;
        margin: 10px auto;
    }
}

@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__cta-box p {
        font-size: 1em;
    }

    .page-terms-conditions__button--primary {
        margin-right: 0;
    }
}