/* Legal Pages Styles (Terms, Privacy, License, Refund) */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-hero,
.terms-hero,
.privacy-hero,
.license-hero,
.refund-hero {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    padding: 80px 0 60px;
    color: white;
    margin-bottom: 0;
}

.legal-hero h1,
.terms-hero h1,
.privacy-hero h1,
.license-hero h1,
.refund-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-hero .lead,
.terms-hero .lead,
.privacy-hero .lead,
.license-hero .lead,
.refund-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.legal-hero .updated-date,
.terms-hero .updated-date,
.privacy-hero .updated-date,
.license-hero .updated-date,
.refund-hero .updated-date {
    opacity: 0.9;
    font-size: 0.95rem;
}

.legal-section,
.terms-section,
.privacy-section,
.license-section,
.refund-section {
    padding: 80px 0;
    background: white;
}

.section-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: #0dcaf0;
    box-shadow: 0 8px 24px rgba(13, 202, 240, 0.1);
}

.section-card h2 {
    font-size: 1.8rem;
    color: #030303;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0dcaf0;
}

.section-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.section-card h4 {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.section-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.section-card ul,
.section-card ol {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.section-card li {
    margin-bottom: 10px;
}

.section-card strong {
    color: #1f2937;
    font-weight: 700;
}

.section-card a {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-card a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-left: 4px solid #0dcaf0;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    color: #1f2937;
    font-weight: 500;
}

.info-alert {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
}

.info-alert i {
    color: #2563eb;
    margin-right: 10px;
}

.info-alert p {
    margin: 0;
    color: #1e40af;
    font-weight: 500;
}

.contact-cta {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.contact-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

.contact-cta .btn-contact {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #7c3aed;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-cta .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.toc-section {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.toc-section h3 {
    font-size: 1.3rem;
    color: #030303;
    font-weight: 800;
    margin-bottom: 20px;
}

.toc-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-section ul li {
    margin-bottom: 12px;
}

.toc-section ul li a {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.toc-section ul li a:hover {
    color: #7c3aed;
}

/* License Page Specific Styles */
.license-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.license-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.license-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 202, 240, 0.2);
    border-color: #0dcaf0;
}

.license-card.featured {
    border-color: #7c3aed;
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.2);
}

.license-card.featured .license-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #0dcaf0 100%);
}

.license-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.license-header {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.license-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.95;
}

.license-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.license-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.license-body {
    padding: 40px 30px;
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.license-features li {
    padding: 12px 0;
    color: #4b5563;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.license-features li i {
    color: #10b981;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.license-features li strong {
    color: #1f2937;
}

.restrictions-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.restrictions-box h6 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.restrictions-box ul {
    margin: 0;
    padding-left: 20px;
}

.restrictions-box li {
    color: #78350f;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.general-terms-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #030303;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

.terms-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.terms-card:hover {
    border-color: #0dcaf0;
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

.terms-card h4 {
    color: #030303;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-card h4 i {
    color: #0dcaf0;
    font-size: 1.5rem;
}

.terms-card p, .terms-card ul {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.terms-card ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-card li {
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: white;
    color: #7c3aed;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #7c3aed;
}

.btn-cta i {
    font-size: 1.2rem;
}

/* Refund Page Specific Styles */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ede9fe 100%);
}

.guarantee-badge {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto 60px;
    border: 3px solid #10b981;
}

.guarantee-badge-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.guarantee-badge h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #030303;
    margin-bottom: 15px;
}

.guarantee-badge p {
    font-size: 1.2rem;
    color: #4b5563;
    margin: 0;
}

.policy-section {
    padding: 80px 0;
    background: white;
}

.refund-type-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.refund-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
}

.refund-type-card:hover {
    border-color: #0dcaf0;
    box-shadow: 0 10px 40px rgba(13, 202, 240, 0.15);
    transform: translateY(-5px);
}

.refund-type-card h3 {
    color: #030303;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.refund-type-card h3 i {
    font-size: 2rem;
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refund-type-card .card-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 25px;
    font-style: italic;
}

.refund-type-card .policy-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.refund-type-card .policy-details h5 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.refund-type-card ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.refund-type-card ul li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.refund-type-card ul li i {
    color: #10b981;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.refund-type-card .warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.refund-type-card .warning-box h6 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refund-type-card .warning-box p {
    color: #78350f;
    margin: 0;
    font-size: 0.95rem;
}

.success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.success-box h6 {
    color: #065f46;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-box p {
    color: #047857;
    margin: 0;
    font-size: 0.95rem;
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 8px 24px rgba(13, 202, 240, 0.15);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    color: #030303;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #4b5563;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0dcaf0;
    box-shadow: 0 4px 16px rgba(13, 202, 240, 0.1);
}

.faq-item h4 {
    color: #030303;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item h4 i {
    color: #0dcaf0;
    margin-right: 10px;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero h1,
    .terms-hero h1,
    .privacy-hero h1,
    .license-hero h1,
    .refund-hero h1 {
        font-size: 2rem;
    }
    
    .legal-hero .lead,
    .terms-hero .lead,
    .privacy-hero .lead,
    .license-hero .lead,
    .refund-hero .lead {
        font-size: 1.1rem;
    }
    
    .section-card {
        padding: 25px 20px;
    }
    
    .section-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .guarantee-badge {
        padding: 30px;
    }
    
    .guarantee-badge h2 {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .license-card {
        margin-bottom: 30px;
    }
}
