/* terms.css */




/* terms.css */

.terms-section {
    background-color: #ffffff;
    padding: 80px 20px;
    line-height: 1.7;
}

.terms-container {
    width: 90%;
    max-width: 800px; /* Narrower width is scientifically easier to read */
    margin: auto;
}

/* Title Styling */
.terms-container h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--medical-navy);
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 20px;
}

/* Section Headings */
.terms-container h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--medical-navy);
    margin-top: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Body Text */
.terms-container p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Specific "Last Updated" styling */
.terms-updated {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    font-style: italic;
    font-size: 13px !important;
    color: var(--warm-steel) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 15px;
    }
    .terms-container h1 {
        font-size: 2.2rem;
    }
}