.page-terms-conditions {
    padding-top: 10px; /* Small top padding for internal pages */
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

.page-terms-conditions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #11271B;
    border-bottom: 1px solid #1E3A2A;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-terms-conditions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-terms-conditions__intro-text {
    font-size: 1.1em;
    color: #A7D9B8;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-terms-conditions__content-area {
    padding-bottom: 60px;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #22C768;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1E3A2A;
    font-weight: 700;
}

.page-terms-conditions__paragraph {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #F2FFF6;
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 30px;
    color: #F2FFF6;
}

.page-terms-conditions__list-item {
    line-height: 1.8;
    margin-bottom: 10px;
}

.page-terms-conditions__list-item strong {
    color: #2AD16F;
}

.page-terms-conditions__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-terms-conditions__support-section {
    background-color: #11271B;
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid #2E7A4E;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__support-section .page-terms-conditions__section-title {
    color: #57E38D;
    border-bottom: none;
    margin-bottom: 20px;
}

.page-terms-conditions__support-section .page-terms-conditions__paragraph {
    color: #A7D9B8;
    margin-bottom: 30px;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-terms-conditions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-terms-conditions__paragraph a {
    color: #57E38D;
    text-decoration: underline;
}

.page-terms-conditions__paragraph a:hover {
    color: #2AD16F;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-terms-conditions__hero-section {
        padding: 20px 10px;
    }

    .page-terms-conditions__hero-content {
        padding: 0 10px;
    }

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

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

    .page-terms-conditions__section-title {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-terms-conditions__paragraph {
        font-size: 0.95em;
    }

    .page-terms-conditions__list {
        margin-left: 20px;
    }

    .page-terms-conditions__list-item {
        font-size: 0.95em;
    }

    .page-terms-conditions__content-image {
        max-width: 100%;
        height: auto;
    }

    .page-terms-conditions__support-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

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

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

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

    .page-terms-conditions__hero-image {
        max-width: 100%;
        height: auto;
    }
    /* Mobile content images must not overflow */
    .page-terms-conditions__content-image {
        max-width: 100%;
        height: auto;
    }
}