/* Terms of Service Page Styles */
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.terms-content {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-content h1 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.effective-date {
    color: var(--secondary-text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-section p, 
.terms-section li {
    line-height: 1.6;
    color: var(--secondary-text-color);
    margin-bottom: 0.8rem;
}

.terms-section ol, 
.terms-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-section ol li, 
.terms-section ul li {
    margin-bottom: 0.5rem;
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.prohibited-item {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.prohibited-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.prohibited-item h3 {
    margin: 0.5rem 0;
    color: var(--text-color);
}

/* Contact Section - Redesigned */
.contact-section address {
    font-style: normal;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.822);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
}

.contact-section address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #333;
}

.contact-section address p:last-child {
    margin-bottom: 0;
}

.contact-section address p::before {
    content: "•";
    color: #4a6cf7;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-section address {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .contact-section address p {
        font-size: 1rem;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    
    .terms-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .prohibited-grid {
        grid-template-columns: 1fr;
    }
}