body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(90deg, #f0eaea, #cfcfcf);
    color: #eaeaea;
    overflow-x: hidden;
}

.term-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

.term-header h1 {
    margin-top: 20vh;
    font-size: 3em;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: zoomIn 1s ease-in-out;
}

.term-header .intro-text {
    font-size: 1.2em;
    color: #0e5f88;
    margin-bottom: 40px;
    animation: slideUp 1s ease-in-out;
}

.term-content .section {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    animation: slideIn 1.2s ease-in-out;
}

.term-content .section h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 10px;
    animation: fadeInText 1s ease-out;
}

.term-content .section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #116589;
}

.term-footer .disclaimer {
    font-size: 0.9em;
    color: #000000;
    text-align: center;
    margin-top: 20px;
}

.term-footer span {
    color: #ff0000;
    text-decoration: underline;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
