/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Navbar Layout */
.navbar {
    background-color: #ffffff;
    border-top: 15px solid #005a8d; /* Top blue bar edge */
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-main {
    font-size: 28px;
    font-weight: bold;
    color: #005a8d;
    margin-right: 5px;
}

.logo-sub {
    font-size: 8px;
    color: #555;
    line-height: 1.1;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-links a {
    text-decoration: none;
    color: #444444;
    font-size: 13px;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #005a8d;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-amount {
    font-size: 11px;
    font-weight: bold;
    color: #005a8d;
}

.nav-icon {
    color: #555555;
    font-size: 18px;
    text-decoration: none;
}

.user-icon {
    background-color: #666666;
    color: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Hero Banner Section */
.hero-banner {
    background: linear-gradient(135deg, #007bb6 0%, #005a8d 100%);
    color: #ffffff;
    padding: 40px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner h1 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* FAQ Layout Content */
.faq-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #555555;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* FAQ Cards */
.faq-item {
    background-color: #e6e6e6;
    border-radius: 4px;
    padding: 20px 25px;
    margin-bottom: 18px;
}

.faq-question {
    font-weight: bold;
    font-size: 13px;
    color: #444444;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-answer {
    font-size: 13px;
    color: #666666;
}

/* Footer Help Context */
.faq-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    font-weight: bold;
    color: #333333;
}

.faq-footer a {
    color: #005a8d;
    text-decoration: underline;
}

/* Simple Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links a {
        margin: 0;
    }
}