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

.page-terms-conditions__hero {
    background-color: #0A2E59; /* Main color */
    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: linear-gradient(135deg, rgba(10, 46, 89, 0.9), rgba(255, 165, 0, 0.4)); /* Blend main and accent color */
    z-index: 1;
}

.page-terms-conditions__hero .page-terms-conditions__container {
    position: relative;
    z-index: 2;
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFA500; /* Accent color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__content-section {
    padding: 60px 0;
}

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

.page-terms-conditions__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #0A2E59; /* Main color for headings */
    margin-top: 35px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFA500; /* Accent color for underline */
    padding-bottom: 10px;
}

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

.page-terms-conditions__article strong {
    color: #0A2E59;
}

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

.page-terms-conditions__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

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

.page-terms-conditions__image--small {
    max-width: 400px;
}

.page-terms-conditions__image--medium {
    max-width: 600px;
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #ccc;
}

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

.page-terms-conditions__button--primary {
    background-color: #FFA500; /* Accent color */
    color: #0A2E59; /* Main color for text */
    border: 2px solid #FFA500;
}

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

.page-terms-conditions__button--secondary {
    background-color: #0A2E59; /* Main color */
    color: #ffffff;
    border: 2px solid #0A2E59;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.1em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__article {
        padding: 25px;
    }
    .page-terms-conditions__article p,
    .page-terms-conditions__list li {
        font-size: 1em;
    }
    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__subtitle {
        font-size: 0.95em;
    }
    .page-terms-conditions__heading {
        font-size: 1.5em;
    }
    .page-terms-conditions__article {
        padding: 15px;
    }
    .page-terms-conditions__list {
        margin-left: 20px;
    }
    .page-terms-conditions__button {
        display: block;
        margin: 10px auto;
        width: calc(100% - 20px);
    }
}