.terms-container {
    padding: 120px 0 60px;
    min-height: calc(100vh - 200px);
}

.terms-container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 2px black;
}

.terms-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1.5px black;
    text-stroke: 1.5px black;
}

.terms-content {
    color: #ccc;
    line-height: 1.8;
}

.terms-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    padding-left: 15px;
    border-left: 3px solid #4CAF50;
}

.terms-content p {
    margin-bottom: 15px;
    padding-left: 18px;
}

.terms-content ul {
    list-style: none;
    padding-left: 35px;
    margin-bottom: 20px;
}

.terms-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.terms-content ul li:hover::before {
    background: #45a049;
    transform: rotate(225deg);
}

/* Custom Scrollbar */
.terms-container::-webkit-scrollbar {
    width: 8px;
}

.terms-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.terms-container::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.terms-container::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

/* Section Transitions */
.terms-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .terms-container h1 {
        font-size: 2.2rem;
    }

    .terms-section h2 {
        font-size: 1.6rem;
    }

    .terms-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .terms-container {
        padding: 100px 20px 40px;
    }

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

    .terms-section {
        padding: 20px;
    }

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

    .terms-content {
        font-size: 0.95rem;
    }

    .terms-content ul {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .terms-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .terms-content h3 {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    .terms-content {
        font-size: 0.9rem;
    }

    .terms-content p {
        padding-left: 10px;
    }

    .terms-content ul {
        padding-left: 15px;
    }

    .terms-content ul li {
        padding-left: 20px;
    }
} 