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

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

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #FFD700, #DC143C);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,215,0,0.2) 0%, rgba(220,20,60,0.2) 50%, transparent 100%);
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 0;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
    position: relative;
    z-index: 1;
}

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

.page-terms-conditions__article {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #DC143C;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

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

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-terms-conditions__article ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

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

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

.page-terms-conditions__btn--primary {
    background-color: #FFD700;
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-terms-conditions__btn--secondary {
    background-color: #DC143C;
    color: #fff;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    margin-top: 20px;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #b31032;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

.page-terms-conditions__cta-footer {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-terms-conditions__cta-text {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-terms-conditions__copyright {
    text-align: center;
    padding: 30px 0;
    background-color: #333;
    color: #aaa;
    font-size: 0.9em;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .page-terms-conditions__hero-title {
        font-size: 2.5em;
    }

    .page-terms-conditions__hero-subtitle {
        font-size: 1.1em;
    }

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

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

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

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

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

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

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

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

    .page-terms-conditions__article p,
    .page-terms-conditions__article ul li {
        font-size: 0.95em;
    }

    .page-terms-conditions__btn {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

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