/* Terms Conditions Hero Section Styles */

/* Hero Section */
.terms-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero-container {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.terms-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.terms-hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.terms-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.terms-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.terms-hero-meta i {
    color: #4ade80;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-hero-container {
        margin: 1rem auto 0 auto;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-description {
        font-size: 1.1rem;
    }
    
    .terms-hero-meta {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .terms-hero-container {
        margin: 0.5rem auto 0 auto;
    }
    
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-hero-container {
        padding: 0 1rem;
    }
} 