/* Legal Pages CSS - Terms and Conditions & Privacy Policy */

/* Main content styling */
.legal-content {
    padding: 120px 0;
}

.legal-content h1 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #4AD295;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Header customization for legal pages */
.legal-header-title h3 {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.5px;
}

.header-actions a:hover {
    background: #3a9d7a !important;
    text-decoration: none;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.menubar {
    background: #fb6d62;
}

.custom-header {
    min-height: 70px;
}

.header-logo img {
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

/* Header title styling */
.header-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: right;
}

.header-date {
    color: white;
    font-size: 0.9rem;
    text-align: right;
}

.logo-img {
    height: 40px;
}

/* Privacy Policy specific styles */
.highlight-box {
    background: #e8f5e8;
    border-left: 4px solid #4AD295;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Footer customization */
.footer-center {
    justify-content: center;
    align-items: center;
}

/* Contact links styling */
.contact-email {
    color: #4AD295;
    text-decoration: none;
}

.contact-email:hover {
    color: #3a9d7a;
    text-decoration: underline;
}

.contact-website {
    color: #4AD295;
    text-decoration: none;
}

.contact-website:hover {
    color: #3a9d7a;
    text-decoration: underline;
}

/* Responsive design for header */
@media (max-width: 992px) {
    .legal-header-title h3 {
        font-size: 1.2rem !important;
    }
    .legal-header-title p {
        font-size: 0.8rem !important;
    }
    
    .header-title {
        font-size: 1.2rem !important;
    }
    
    .header-date {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .custom-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 15px !important;
    }
    
    .legal-header-title {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
    }
    
    .legal-header-title h3 {
        font-size: 1rem !important;
        text-align: center;
    }
    
    .legal-header-title p {
        font-size: 0.75rem !important;
        text-align: center !important;
    }
    
    .header-title {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .header-date {
        font-size: 0.75rem !important;
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .legal-header-title h3 {
        font-size: 0.85rem !important;
        line-height: 1.2;
    }
    
    .legal-header-title p {
        font-size: 0.7rem !important;
    }
    
    .header-logo img {
        height: 35px !important;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .header-title {
        font-size: 0.85rem !important;
        line-height: 1.2;
    }
    
    .header-date {
        font-size: 0.7rem !important;
    }
}
