/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1F497D;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E50914;
}

.legal-section h3 {
    color: #1A7F8F;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-info-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #E50914;
    margin: 20px 0;
}

.legal-info-box p {
    margin-bottom: 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-list {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.legal-updated {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #1F497D;
    color: white;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.cookie-consent-content a {
    color: #E50914;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cookie-consent-buttons .btn-accept {
    background-color: #E50914;
    color: white;
}

.cookie-consent-buttons .btn-accept:hover {
    background-color: #c50812;
}

.cookie-consent-buttons .btn-reject {
    background-color: #666;
    color: white;
}

.cookie-consent-buttons .btn-reject:hover {
    background-color: #555;
}

.cookie-consent-buttons .btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-consent-buttons .btn-settings:hover {
    background-color: white;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-content p {
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
}

/* =========================
   Contact Form Styles
   ========================= */
.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #1F497D;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form .required {
    color: #E50914;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #E50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #E50914;
    cursor: pointer;
}

.contact-form .form-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
}

.contact-form .form-checkbox a {
    color: #E50914;
    text-decoration: underline;
}

.contact-form .btn-block {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
}

.contact-form .form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.contact-form .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Grid for side-by-side layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

