/* Legal Pages Styling */
.legal-page {
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #F9F8F6 0%, #AFC4D8 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 76, 107, 0.1);
}

.legal-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #3B4C6B;
    margin-bottom: 15px;
    position: relative;
}

.legal-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #C7AFC3, #F3DCE2);
    border-radius: 2px;
}

.legal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #3B4C6B;
    font-weight: 400;
    opacity: 0.8;
}

.legal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(59, 76, 107, 0.1);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(59, 76, 107, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #3B4C6B;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #C7AFC3, #F3DCE2);
    border-radius: 2px;
}

.legal-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3B4C6B;
    margin: 25px 0 15px 0;
}

.legal-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2A2E35;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-info ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-info li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2A2E35;
    margin-bottom: 8px;
    position: relative;
}

.legal-info li::marker {
    color: #C7AFC3;
}

.legal-info strong {
    color: #3B4C6B;
    font-weight: 600;
}

.legal-info a {
    color: #3B4C6B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-info a:hover {
    color: #C7AFC3;
    border-bottom-color: #C7AFC3;
}

.legal-footer {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 76, 107, 0.1);
}

.legal-footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #3B4C6B;
    margin-bottom: 20px;
    opacity: 0.8;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-nav .btn-primary,
.legal-nav .btn-secondary {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-nav .btn-primary {
    background: linear-gradient(135deg, #3B4C6B, #AFC4D8);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 76, 107, 0.3);
}

.legal-nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 76, 107, 0.4);
}

.legal-nav .btn-secondary {
    background: linear-gradient(135deg, #F3DCE2, #C7AFC3);
    color: #3B4C6B;
    box-shadow: 0 5px 15px rgba(199, 175, 195, 0.3);
}

.legal-nav .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 175, 195, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .legal-header {
        margin-bottom: 30px;
        padding: 30px 15px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
        padding-left: 15px;
    }
    
    .legal-section h2::before {
        height: 30px;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .legal-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-nav .btn-primary,
    .legal-nav .btn-secondary {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 20px 15px;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        padding-left: 12px;
    }
    
    .legal-info ul {
        padding-left: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .legal-nav {
        display: none;
    }
    
    .legal-page {
        background: white;
        padding-top: 20px;
    }
    
    .legal-header,
    .legal-content,
    .legal-footer {
        background: white;
        box-shadow: none;
    }
    
    .legal-section h2::before {
        display: none;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Accessibility Improvements */
.legal-info a:focus {
    outline: 2px solid #3B4C6B;
    outline-offset: 2px;
    border-radius: 2px;
}

.legal-nav .btn-primary:focus,
.legal-nav .btn-secondary:focus {
    outline: 2px solid #3B4C6B;
    outline-offset: 2px;
}

/* Text Selection */
::selection {
    background: rgba(199, 175, 195, 0.3);
    color: #2A2E35;
}

::-moz-selection {
    background: rgba(199, 175, 195, 0.3);
    color: #2A2E35;
} 