/* License Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Main Content */
.main-content {
    padding: 3rem 2rem 2rem 2rem;
}

.title-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #6c7cfb;
    font-weight: 600;
}

/* Content Sections */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #6c7cfb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section h2 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section h2:before {
    content: '';
    width: 4px;
    height: 20px;
    background: #6c7cfb;
    margin-right: 0.75rem;
    border-radius: 2px;
}

.section p {
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
}

.section p:last-child {
    margin-bottom: 0;
}

.section ul {
    color: #4a5568;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.section li {
    margin-bottom: 0.5rem;
}

.section li:last-child {
    margin-bottom: 0;
}

/* Special sections */
.disclaimer-section {
    background: #fef5e7;
    border-left-color: #f6ad55;
}

.disclaimer-section h2:before {
    background: #f6ad55;
}

.disclaimer-section p {
    color: #744210;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #e2e8f0;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer p:last-child {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    .main-content {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .title-section h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .title-section h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.1rem;
    }
    
    .section p {
        text-align: left;
    }
}
