/* Main Container */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.terms-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Terms Introduction Section */
.terms-intro {
    margin-bottom: 4rem;
}

.intro-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-card h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Terms Content Section */
.terms-content {
    margin-bottom: 4rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
}

.terms-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.terms-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-card li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Terms Updates Section */
.terms-updates {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 4rem;
}

.terms-updates h2 {
    color: #333;
    margin-bottom: 1rem;
}

.updates-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Terms Contact Section */
.terms-contact {
    text-align: center;
    margin-bottom: 4rem;
}

.terms-contact h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-button {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.contact-button:first-child {
    background: #007bff;
    color: white;
    border: none;
}

.contact-button:first-child:hover {
    background: #0056b3;
}

.chat-button {
    background: #28a745;
    color: white;
    border: none;
}

.chat-button:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.terms-card {
    animation: fadeIn 0.5s ease-out forwards;
} 