* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.maintenance-container {
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.maintenance-image {
    margin-bottom: 2rem;
}

.main-image {
    max-width: 300px;
    height: auto;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff6b00;
}

.message {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.message p {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}



@media (max-width: 768px) {
    .maintenance-container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .main-image {
        max-width: 200px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Privacy Policy Page Styles */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
}

.logo-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-header img {
    max-width: 200px;
    height: auto;
}

.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-content h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-content h2 {
    color: #34495e;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.privacy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 10px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-info {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Privacy link in footer */
.footer-links {
    margin-top: 2rem;
    text-align: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
