/* Scoped styles for Terms and Conditions to avoid affecting header/footer */

:root {
    --coral: #E87461;
    --peach: #F5A962;
    --yellow: #E8D174;
    --teal: #4FA897;
    --dark-blue: #2C4A52;
    --light-gray: #F5F5F5;
}

.legal-content {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #444;
    background-color: #ffffff;
    max-width: 900px;
    margin: 40px auto;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.legal-content h1 {
    color: var(--dark-blue);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.legal-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--teal);
    margin: 15px auto;
}

.legal-content h2 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 25px;
    list-style-type: none; /* Keep custom arrows */
}

.legal-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.legal-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--peach);
    font-weight: bold;
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: var(--coral);
}

@media (max-width: 768px) {
    .legal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
    }
}
