/* EULA Page Specific Styles */

.hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-small::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.hero-small h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-small p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    opacity: 0.95;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.legal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-header .date {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.important-notice {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.important-notice h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.important-notice p {
    color: #555;
    line-height: 1.8;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    text-align: left;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin: 2rem 0 1rem;
}

.section h4 {
    font-size: 1.2rem;
    color: #555;
    margin: 1.5rem 0 1rem;
}

.section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

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

.acceptance-box {
    background: #f8f9fa;
    border: 2px solid #667eea;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.acceptance-box p {
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-small h1 {
        font-size: 2rem;
    }

    .hero-small p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section h3 {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 3rem 5%;
    }
}