/* Terms of Use page specific styles */

/* Hero section */
#text01 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0;
    color: #1a237e;
}

/* Section headers */
.terms-section h2 {
    font-size: 1.8rem;
    color: #283593;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8eaf6;
}

/* Content paragraphs */
.terms-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #37474f;
    margin: 1.2rem 0;
}

/* Lists */
.terms-section ul,
.terms-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: #37474f;
}

/* Important notices */
.terms-notice {
    background-color: #f5f8ff;
    padding: 1.5rem;
    border-left: 4px solid #3f51b5;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.terms-notice p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #1a237e;
}

/* Definition sections */
.definition-box {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.definition-box h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.definition-box p {
    color: #37474f;
    margin: 0.8rem 0;
}

/* Dividers */
#divider01, #divider02 {
    height: 2px;
    background: linear-gradient(to right, transparent, #3f51b5, transparent);
    margin: 3rem 0;
}

/* Footer container */
#container01 {
    background-color: #f5f8ff;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

/* Footer links */
#links01 {
    margin: 1rem 0;
}

#links01 a {
    color: #3f51b5;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#links01 a:hover {
    background-color: rgba(63, 81, 181, 0.1);
    color: #283593;
}

/* Copyright text */
#text06 {
    color: #37474f;
    font-size: 0.9rem;
    margin-top: 2rem;
    text-align: center;
}

/* Last updated */
.last-updated {
    font-style: italic;
    color: #78909c;
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    #text01 {
        font-size: 2rem;
        margin: 2rem 0;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-section p,
    .terms-notice p {
        font-size: 1rem;
    }

    .definition-box {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .definition-box h3 {
        font-size: 1.2rem;
    }
}

/* Print styles */
@media print {
    .terms-notice {
        background: none;
        border: 1px solid #ccc;
        border-left: 4px solid #3f51b5;
    }

    .definition-box {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    #container01 {
        background: none;
        padding: 1rem 0;
    }
} 