/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header styles */
.header {
    background-color: #f4f4f4;
    padding: 1rem;
    border-bottom: 2px solid #ddd;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-section {
    margin-bottom: 1rem;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 180px;
}

.title-section {
    flex: 1;
    text-align: center;
}

.title-section h1 {
    color: #333;
    font-size: 2rem;
}

/* Menu bar styles */
.menu-bar {
    background-color: #163E64;
    padding: 0;
}

.menu {
    display: flex;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.menu li {
    flex: 1;
}

.menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #555;
}

.menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Content area */
.content-area {
    flex: 1;
    padding: 1.5rem;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.home-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.content-boxes {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.content-box {
    flex: 1;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.content-box h3 {
    color: #163E64;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

.contact-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 8px;
    text-align: center;
}

.contact-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #333;
}

.system-content h1 {
    color: #163E64;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.system-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.system-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.system-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.step-image {
    flex: 0 0 200px;
}

.step-image img {
    max-width: 100%;
    height: auto;
}

.step-text {
    flex: 1;
}

.step-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #444;
}

.footer {
    padding: 1rem;
    text-align: right;
    background-color: #f8f9fa;
}

.footer p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.tagline-section p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .tagline-section p {
        font-size: 1rem;
    }
    
    .menu {
        flex-direction: column;
    }
    
    .menu li {
        flex: none;
    }
    
    .content-boxes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .system-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-image {
        flex: none;
    }
}

/* FAQ styles */
.faq-content h1 {
    color: #163E64;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-question {
    color: #163E64;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem;
    }

    .title-section h1 {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .sidebar,
    .content-area {
        padding: 1rem;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

/* About page styles */
.about-content h1 {
    color: #163E64;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.team-member-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0077b5;
    transition: color 0.3s;
}

.linkedin-link:hover {
    color: #005582;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

.team-member h3 {
    color: #163E64;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.team-member p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}