/* style/terms-conditions.css */

/* Variables for consistent theming */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-medium: #e0e0e0;
    --border-color: #cccccc;
}

/* Base styles for the page content */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Hero Section */
.page-terms-conditions .terms-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Space between content and image */
}

.page-terms-conditions .terms-hero-content {
    max-width: 800px;
}

.page-terms-conditions .terms-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light); /* Gold text on dark blue background, or white */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .terms-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light); /* White text on dark background */
}

.page-terms-conditions .terms-hero-image {
    width: 100%;
    max-width: 600px; /* Max width for the image */
    margin-top: 30px;
}

.page-terms-conditions .terms-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    /* No filter properties to change color */
}

/* Call to Action Button */
.page-terms-conditions .cta-button,
.page-terms-conditions .action-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color); /* Gold button */
    color: var(--secondary-color); /* Dark blue text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions .cta-button:hover,
.page-terms-conditions .action-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Section */
.page-terms-conditions .terms-content {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-terms-conditions .terms-content h2 {
    font-size: 2.2em;
    color: var(--secondary-color); /* Dark blue headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color); /* Gold underline */
    padding-bottom: 10px;
}

.page-terms-conditions .terms-content h3 {
    font-size: 1.6em;
    color: var(--secondary-color); /* Dark blue subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions .terms-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-terms-conditions .terms-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.page-terms-conditions .terms-content img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* No filter properties to change color */
}

/* Specific Link Styles within content */
.page-terms-conditions .contact-link {
    color: var(--secondary-color); /* Dark blue for links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions .contact-link:hover {
    color: var(--primary-color); /* Gold on hover */
}

/* Call to Action Section at bottom */
.page-terms-conditions .call-to-action {
    background-color: var(--secondary-color); /* Dark blue background */
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-terms-conditions .call-to-action h2 {
    font-size: 2.5em;
    color: var(--primary-color); /* Gold heading */
    margin-bottom: 20px;
}

.page-terms-conditions .call-to-action p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-terms-conditions .terms-hero h1 {
        font-size: 3em;
    }
    .page-terms-conditions .terms-hero p {
        font-size: 1.1em;
    }
    .page-terms-conditions .terms-hero {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions .terms-hero {
        padding: 60px 15px;
        gap: 20px;
    }
    .page-terms-conditions .terms-hero h1 {
        font-size: 2.5em;
    }
    .page-terms-conditions .terms-hero p {
        font-size: 1em;
    }
    .page-terms-conditions .terms-content {
        padding: 40px 0;
    }
    .page-terms-conditions .terms-content h2 {
        font-size: 1.8em;
        margin-top: 30px;
    }
    .page-terms-conditions .terms-content h3 {
        font-size: 1.4em;
    }
    .page-terms-conditions .cta-button,
    .page-terms-conditions .action-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-terms-conditions .call-to-action {
        padding: 40px 15px;
    }
    .page-terms-conditions .call-to-action h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions .terms-hero h1 {
        font-size: 2em;
    }
    .page-terms-conditions .terms-hero p {
        font-size: 0.95em;
    }
    .page-terms-conditions .terms-content h2 {
        font-size: 1.6em;
    }
    .page-terms-conditions .terms-content h3 {
        font-size: 1.2em;
    }
    .page-terms-conditions .cta-button,
    .page-terms-conditions .action-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-terms-conditions .container {
        padding: 0 15px;
    }
}