/* ======== MAIN STYLES ======== */
body {
    background-color: #f0f8ff;
    color: #333;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* ======== NAVIGATION ======== */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    background-color: #333;
    padding: 2px 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.date {
    text-align: center;
    margin-top: 0;
    color: white;
    background-color: #333;
    padding: 0;
}

/* ======== CONTACT PAGE ======== */
.contact-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-title {
    color: #000080;
    margin: 15px 0;
}

.contact-qr {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.contact-link {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
    color: #800000;
}
/* HELP PAGE SPECIFIC STYLES */
.help-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.help-section {
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;
}

.help-section h2 {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 25px;
}

.help-section h3 {
    color: #444;
    margin-top: 20px;
}

.help-intro {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.help-note {
    background: #f8f8f8;
    padding: 10px;
    border-left: 3px solid #000080;
    margin: 15px 0;
}

.help-link {
    color: #000080;
    font-weight: bold;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

.version {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.help-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .help-container {
        padding: 15px;
    }
    
    .help-section {
        text-align: left;
    }
}