/* General Layout */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Terms Section */
.terms {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.terms h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.terms h3 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ffd700;
    padding-left: 0.5rem;
}

.terms p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Blockquote for Emphasis */
.terms blockquote {
    background-color: #f0f0f0;
    border-left: 4px solid #ffd700;
    padding: 1rem;
    font-size: 1.1rem;
    color: #333;
    margin: 1.5rem 0;
    font-style: italic;
}

/* Link Styles */
.terms a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms a:hover {
    color: #e5ac00;
}
/* Scroll-to-Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffd700;
    color: #333;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #e5ac00;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms {
        padding: 1.5rem;
        margin: 2rem;
    }
    
    .terms h2 {
        font-size: 2rem;
    }
    
    .terms h3 {
        font-size: 1.6rem;
    }
    
    .terms p {
        font-size: 1rem;
    }
}
