* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1f2937;
    line-height: 1.5;
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2563eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo span {
    color: #6b7280;
}

.nav-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.8rem;
    padding: 5px 10px;
    white-space: nowrap;
    border-radius: 5px;
}

/* Main Content */
main {
    padding: 15px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    margin-bottom: 25px;
    border-radius: 12px;
}

.hero h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cta-btn {
    background: white;
    color: #2563eb;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* Jobs Section */
.jobs-section, .trending-section {
    margin-bottom: 25px;
}

.jobs-section h2, .trending-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
    text-align: center;
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.job-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.company {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4b5563;
}

.apply-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Trending Cards */
.trending-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trending-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trending-card p {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.trending-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.newsletter h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.newsletter p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #6b7280;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.email-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
}

.email-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 15px;
    background: #1f2937;
    color: white;
    font-size: 0.7rem;
    line-height: 1.4;
}

/* Mobile First - No desktop media queries needed */
/* This CSS is already optimized for mobile and will scale appropriately */