/* style/terms-conditions.css */

:root {
    --primary-color: #FFD700; /* Luxury Gold */
    --secondary-color: #000080; /* Midnight Blue */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-dark: #1A1A2E;
    --border-color: #E0E0E0;
}

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* Hero Section */
.page-terms-conditions .terms-hero-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions .terms-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 128, 0.5));
    z-index: 0;
}

.page-terms-conditions .terms-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-terms-conditions .terms-hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-terms-conditions .terms-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

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

.page-terms-conditions .terms-article {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions .terms-section-title {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    font-weight: bold;
}

.page-terms-conditions .terms-section-title:first-of-type {
    margin-top: 0;
}

.page-terms-conditions .terms-subsection-title {
    font-size: 1.6em;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-terms-conditions strong {
    color: var(--secondary-color);
}

.page-terms-conditions a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
    color: #DAA520; /* Darker gold on hover */
    text-decoration: underline;
}

.page-terms-conditions .terms-link-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions .terms-link-button:hover {
    background-color: #DAA520;
    color: var(--text-light);
    text-decoration: none;
}

.page-terms-conditions .terms-link-email, 
.page-terms-conditions .terms-link-phone {
    color: var(--secondary-color);
    font-weight: normal;
    text-decoration: underline;
}

.page-terms-conditions .terms-link-email:hover, 
.page-terms-conditions .terms-link-phone:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.page-terms-conditions ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-terms-conditions li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.page-terms-conditions .terms-image-fullwidth {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-terms-conditions .terms-hero-title {
        font-size: 2.8em;
    }
    .page-terms-conditions .terms-hero-description {
        font-size: 1.1em;
    }
    .page-terms-conditions .terms-article {
        padding: 30px;
    }
    .page-terms-conditions .terms-section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions .terms-subsection-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions .terms-hero-section {
        padding: 60px 0;
    }
    .page-terms-conditions .terms-hero-title {
        font-size: 2.2em;
    }
    .page-terms-conditions .terms-hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-terms-conditions .terms-hero-image {
        margin-top: 20px;
    }
    .page-terms-conditions .terms-content-section {
        padding: 40px 0;
    }
    .page-terms-conditions .terms-article {
        padding: 20px;
        margin: 0 10px;
    }
    .page-terms-conditions .terms-section-title {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-terms-conditions .terms-subsection-title {
        font-size: 1.2em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-terms-conditions .terms-image-fullwidth {
        margin: 20px auto;
    }
    .page-terms-conditions .terms-link-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions .terms-hero-section {
        padding: 40px 0;
    }
    .page-terms-conditions .terms-hero-title {
        font-size: 1.8em;
    }
    .page-terms-conditions .terms-hero-description {
        font-size: 0.9em;
    }
    .page-terms-conditions .terms-article {
        padding: 15px;
    }
    .page-terms-conditions .terms-section-title {
        font-size: 1.4em;
    }
    .page-terms-conditions .terms-subsection-title {
        font-size: 1.1em;
    }
    .page-terms-conditions .container {
        padding: 0 15px;
    }
}