/* Legal Pages Styling */

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    min-height: calc(100vh - 160px);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Company Info Card */
.company-info-card {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.company-details h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #9ca3af;
    font-weight: 500;
    font-size: 1rem;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.info-value a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #22c55e;
    text-decoration: underline;
}

/* Section Cards for VDD */
.section-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.section-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(20, 25, 30, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.section-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-list li {
    color: #e5e7eb;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.security-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.security-list li a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.security-list li a:hover {
    color: #22c55e;
    text-decoration: underline;
}

/* Policy Cards for Return Policy */
.policy-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.policy-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(20, 25, 30, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.policy-number {
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.policy-content {
    flex: 1;
}

.policy-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-content li {
    color: #e5e7eb;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #22c55e;
    text-decoration: underline;
}

/* Special Policy Card Variants */
.highlight-card {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.highlight-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.1);
}

.highlight-card .policy-number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.warning-card {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
}

.warning-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.1);
}

.warning-card .policy-number {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.acceptance-card {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
}

.acceptance-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    background: rgba(34, 197, 94, 0.1);
}

.acceptance-card .policy-number {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Contact CTA */
.contact-cta {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-cta h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-cta p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-button {
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Enhanced Footer */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-main {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-container {
        padding: 100px 20px 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .company-info-card,
    .section-card,
    .contact-cta {
        padding: 25px;
    }
    
    .policy-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .policy-number {
        align-self: center;
    }
    
    .info-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
/* Terms and Conditions Specific Styles */
.legal-section {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.legal-section h2 {
    color: #3b82f6;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section p {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-section li {
    color: #e5e7eb;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 10px;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-footer {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.legal-footer p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.page-footer {
    background: rgba(15, 20, 25, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-footer p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
}

.page-footer a {
    color: #3b82f6;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #22c55e;
    text-decoration: underline;
}
