/* Terms of Use Page Styles */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
    line-height: 1.8;
}

.card-body h2 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-body h2 i {
    color: #007bff;
}

.card-body p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.card-body ul {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.card-body ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.alert {
    border-radius: 10px;
    border: none;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.alert-info .alert-link {
    color: #1565c0;
    text-decoration: none;
}

.alert-info .alert-link:hover {
    text-decoration: underline;
}

.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.text-primary {
    color: #667eea !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .card-body {
        padding: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 