/* style/terms-conditions.css */

/* General Page Styles */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for body text, good contrast */
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-terms-conditions-hero {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions-hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFCC00; /* Accent color for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

/* Content Section */
.page-terms-conditions-content {
    padding: 60px 0;
}

.page-terms-conditions-intro-paragraph {
    font-size: 1.1em;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 5px solid #003366;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.page-terms-conditions-article {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions-section-title {
    font-size: 2.2em;
    color: #003366; /* Main brand color for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions-sub-section-title {
    font-size: 1.6em;
    color: #1a4f80; /* Slightly lighter main color for sub-sections */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-terms-conditions-article p {
    margin-bottom: 15px;
    color: #444444;
}

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

.page-terms-conditions-list li {
    margin-bottom: 8px;
}

/* Call to Action Blocks */
.page-terms-conditions-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #e6f2ff; /* Light blue background for CTAs */
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions-cta-block-secondary {
    background-color: #fff8e6; /* Light yellow background for secondary CTAs */
    border: 1px solid #FFCC00;
}

.page-terms-conditions-cta-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions-cta-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-terms-conditions-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.05em;
}

.page-terms-conditions-button-primary {
    background-color: #FFCC00; /* Accent color for primary buttons */
    color: #003366; /* Main color for text on primary button */
    border: 2px solid #FFCC00;
}

.page-terms-conditions-button-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-terms-conditions-button-secondary {
    background-color: #003366; /* Main color for secondary buttons */
    color: #FFCC00; /* Accent color for text on secondary button */
    border: 2px solid #003366;
}

.page-terms-conditions-button-secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions-hero-title {
        font-size: 2.5em;
    }

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

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

    .page-terms-conditions-sub-section-title {
        font-size: 1.4em;
    }

    .page-terms-conditions-article {
        padding: 20px;
    }

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

    .page-terms-conditions-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

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

    .page-terms-conditions-hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-terms-conditions-sub-section-title {
        font-size: 1.2em;
    }

    .page-terms-conditions-intro-paragraph {
        font-size: 1em;
    }

    .page-terms-conditions-cta-image {
        max-width: 200px;
    }
}