/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray for general text on dark background */
    background-color: #1A1A2E;
    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, #1A1A2E 0%, #E94560 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-terms-conditions__section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #E94560;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.5);
    padding-bottom: 10px;
}

.page-terms-conditions__heading--center {
    text-align: center;
}

.page-terms-conditions__text-content p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-terms-conditions__text-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-terms-conditions__text-content li {
    margin-bottom: 8px;
}

.page-terms-conditions__highlight {
    color: #E94560;
    font-weight: bold;
}

.page-terms-conditions__link {
    color: #E94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-terms-conditions__button--primary {
    background-color: #E94560;
    color: #ffffff;
    border: 2px solid #E94560;
}

.page-terms-conditions__button--primary:hover {
    background-color: #ff7f99;
    border-color: #ff7f99;
    transform: translateY(-3px);
}

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

.page-terms-conditions__button--secondary:hover {
    background-color: #E94560;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-terms-conditions__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-terms-conditions__image--left {
    float: left;
    margin-right: 30px;
}

.page-terms-conditions__image--right {
    float: right;
    margin-left: 30px;
}

.page-terms-conditions__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__content-grid::after {
    content: "";
    display: table;
    clear: both;
}

.page-terms-conditions__cta-box {
    background-color: #2a2a3e;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #E94560;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-terms-conditions__related-links {
    background-color: #1A1A2E;
    padding: 50px 0;
    text-align: center;
}

.page-terms-conditions__link-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.page-terms-conditions__link-list li a {
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid #E94560;
    border-radius: 5px;
    display: block;
    color: #E94560;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__link-list li a:hover {
    background-color: #E94560;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-terms-conditions__hero-title {
        font-size: 2.8em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__image--left, .page-terms-conditions__image--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        display: block;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 80px 0;
    }
    .page-terms-conditions__hero-title {
        font-size: 2.2em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section {
        padding: 40px 0;
    }
    .page-terms-conditions__heading {
        font-size: 1.6em;
    }
    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-text {
        font-size: 1em;
    }
    .page-terms-conditions__link-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .page-terms-conditions__link-list li a {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }
    .page-terms-conditions__hero-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-terms-conditions__heading {
        font-size: 1.4em;
    }
    .page-terms-conditions__button {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    .page-terms-conditions__cta-box {
        padding: 30px 20px;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.5em;
    }
}