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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions__title,
.page-terms-conditions__subtitle {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-terms-conditions__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

.page-terms-conditions__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-terms-conditions__content-block {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-terms-conditions__content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.15);
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFCC00;
    padding-bottom: 10px;
    font-weight: 700;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-terms-conditions__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.page-terms-conditions__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #444;
}

.page-terms-conditions__list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

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

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFCC00;
}

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

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

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

    .page-terms-conditions__heading {
        font-size: 1.6em;
    }

    .page-terms-conditions__content-grid {
        grid-template-columns: 1fr;
    }

    .page-terms-conditions__content-block {
        padding: 25px;
    }

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

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

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

    .page-terms-conditions__section {
        padding: 40px 0;
    }

    .page-terms-conditions__content-block {
        padding: 20px;
    }
}