/* Terms Page Styling - Looksyy Theme */

body {
    font-family: 'Dosis', sans-serif;
    background-color: #f5f5f5; /* Smoky white background */
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.terms-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.5rem 3rem;
    background-color: #2d001f; /* Deep plum container */
    border-radius: 22px;
    box-shadow: 0 0 30px rgba(144, 0, 100, 0.25); /* Subtle plum glow */
    line-height: 1.8;
    transition: all 0.3s ease-in-out;
    width: 90%; /* Responsive width */
    box-sizing: border-box;
}

.terms-container h1 {
    font-size: 2.75rem;
    color: #ffb7ef; /* Lavender pink */
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.terms-container section {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.terms-container section:hover {
    transform: translateY(-3px);
}

.terms-container h2 {
    font-size: 1.7rem;
    color: #ff8ad9; /* Neon-pinkish lavender */
    margin-bottom: 0.8rem;
    border-left: 4px solid #ffc6f4; /* Light pink border */
    padding-left: 0.7rem;
}

.terms-container p {
    font-size: 1.1rem;
    color: #f5f5f5; /* Soft white text */
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.terms-container a {
    color: #ff99cc; /* Pinkish link */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.terms-container a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Design */

/* Tablets and small desktops */
@media (max-width: 768px) {
    .terms-container {
        padding: 2rem 2rem;
        margin: 3rem auto;
        max-width: 95%;
    }

    .terms-container h1 {
        font-size: 2.2rem;
    }

    .terms-container h2 {
        font-size: 1.4rem;
    }

    .terms-container p {
        font-size: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .terms-container {
        padding: 1.5rem 1.5rem;
        margin: 2rem auto;
        max-width: 100%;
        border-radius: 16px;
    }

    .terms-container h1 {
        font-size: 1.9rem;
        margin-bottom: 1.8rem;
    }

    .terms-container h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .terms-container p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .terms-container section:hover {
        transform: none; /* Disable hover effects on mobile for smoothness */
    }
}
