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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header styles */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 80px;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: #1f2937;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.brand-subtitle {
    color: #f97316;
    font-size: 1.125rem;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

.icon {
    height: 40px;
    transition: opacity 0.2s;
}

.icon:hover {
    opacity: 0.8;
}

/* Navigation styles */
.main-nav {
    background: linear-gradient(to right, #111827, #1f2937, #111827);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);


}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.nav-link {
    color: #f97316;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.nav-link:hover {
    color: white;
    background-color: #f97316;
}

/* Main content styles */
.main-content {
    padding: 3rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.card-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.card-link:hover {
    color: #ea580c;
}

/* Footer styles */
.footer {
    background: linear-gradient(to right, #111827, #1f2937, #111827);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 64px;
    margin-bottom: 1rem;
}

.footer-text {
    color: #f97316;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.copyright {
    color: #9ca3af;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1f2937;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-icons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-link {
        border-radius: 0;
        text-align: center;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}