/* Reset and 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;
    color: #0a1f2e;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #154360;
}

.logo-accent {
    color: #ffdb58;
    border-bottom: 3px solid #ffdb58;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #154360;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: #154360;
    border: 1px solid #154360;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

.btn-primary {
    padding: 0.5rem 1.5rem;
    background-color: #154360;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #154360 0%, #0d2d42 100%);
    padding: 5rem 0;
    color: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-accent {
    color: #ffdb58;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.search-box {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #154360;
}

.btn-search {
    padding: 1rem 2rem;
    background-color: #ffdb58;
    color: #154360;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background-color: #f5d04a;
    transform: translateY(-2px);
}

.quick-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-link {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.quick-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Job Categories */
.job-categories {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1f2e;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

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

.category-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background-color: #e6f2f8;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #154360;
}

.category-card h3 {
    font-weight: 600;
    color: #0d2d42;
    margin-bottom: 0.5rem;
}

.category-card:hover h3 {
    text-decoration: underline;
}

.category-count {
    font-size: 0.875rem;
    color: #6b7280;
}

.category-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffdb58;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover .category-indicator {
    opacity: 1;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #154360;
    color: #ffdb58;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d2d42;
    margin-bottom: 0.75rem;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Featured Jobs */
.featured-jobs {
    padding: 5rem 0;
    background-color: #ffffff;
}

.jobs-grid {
    display: grid;
    gap: 1.5rem;
}

.job-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #154360;
}

.job-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d2d42;
    margin-bottom: 0.25rem;
}

.company-name {
    color: #6b7280;
    font-size: 0.875rem;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.job-detail svg {
    width: 1rem;
    height: 1rem;
    stroke: #9ca3af;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-tag {
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Career Advice */
.career-advice {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.resource-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: block;
}

.resource-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.resource-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #154360;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.resource-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: #ffffff;
}

.resource-tag {
    padding: 0.25rem 0.625rem;
    background-color: #fffae0;
    color: #b38a00;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.resource-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d2d42;
    margin-bottom: 0.5rem;
}

.resource-card:hover h3 {
    text-decoration: underline;
}

.resource-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #154360;
}

.resource-link span:last-child {
    transition: transform 0.3s;
}

.resource-card:hover .resource-link span:last-child {
    transform: translateX(0.25rem);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #154360 0%, #0d2d42 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background-color: #ffdb58;
    color: #154360;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background-color: #f5d04a;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: #0a1f2e;
    color: #9ca3af;
    padding: 1.5rem 0;
}

.footer-simple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-accent {
    color: #ffdb58;
    border-bottom: 3px solid #ffdb58;
}

.footer-logo-link:hover .footer-logo-text {
    color: #e5e7eb;
}

.footer-logo-link:hover .footer-logo-accent {
    color: #ffdb58;
}

.footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}
