/* General Page Styling */
body {
    background-color: #E7F7E7;
    color: #34602F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Style */
.header {
    background-color: #E7F7E7;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background-color: #1e293b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 44px;
    font-weight: 700;
    color: #1e293b;
}

.brand-subtitle {
    font-size: 19px;
    color: #64748b;
    font-weight: 400;
}

.tagline {
    font-size: 21px;
    color: #64748b;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1e293b;
    color: white;
}

.btn-primary:hover {
    background-color: #334155;
}

.btn-ghost {
    background-color: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-ghost:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}

.icon {
    width: 16px;
    height: 16px;
}

/* Navigation menu for smaller screens */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.nav-menu.active {
    display: block;
}

.nav-menu a {
    display: block;
    padding: 12px 24px;
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.nav-menu a:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #64748b;
}

@media (max-width: 768px) {
    .header-actions > .btn:not(.btn-primary) {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .tagline {
        display: none;
    }
}
