.terms-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
}

.terms-header h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.terms-header .subtitle {
    font-size: 1.1rem;
    color: #718096;
}

.terms-header .last-updated {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 15px;
    font-style: italic;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h2 .section-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.terms-section p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.8;
    color: #4a5568;
}

.terms-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-section ul.prohibited li:before {
    content: "✗";
    color: #e53e3e;
}

.important-note {
    background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
    border-left: 5px solid #f39c12;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
}

.important-note strong {
    color: #d68910;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-box p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-box a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: white;
    text-decoration: underline;
}

.final-note {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 5px solid #4caf50;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.final-note strong {
    color: #2e7d32;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.back-to-home {
    text-align: center;
    margin: 40px 0;
}

.back-to-home a {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.back-to-home a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

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

    .terms-header h1 {
        font-size: 1.8rem;
    }

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