* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo img {
    height: 40px;
    margin-right: 12px;
    width: auto;
}

.logo h1 {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 0 5px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 4px;
    display: block;
    white-space: nowrap;
}

nav ul li a:hover, nav ul li a.current {
    background-color: rgba(255, 255, 255, 0.2);
}

main {
    padding: 30px 0;
    width: 100%;
}

h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
    border-left: 5px solid #2575fc;
    padding-left: 12px;
    word-wrap: break-word;
}

h3 {
    font-size: 22px;
    margin: 20px 0 12px;
    color: #34495e;
}

p {
    margin-bottom: 12px;
    color: #555;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    overflow: hidden;
}

.faq-item {
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 18px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #2575fc;
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-answer {
    color: #555;
    padding: 12px;
    background-color: white;
    border-left: 3px solid #2575fc;
    border-radius: 0 0 4px 4px;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0 15px;
    margin-top: 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2575fc;
}

.copyright {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        width: 100%;
        display: none;
        margin-top: 10px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 5px 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 10px;
        width: 100%;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .card {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 10px;
    }
}