/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00A5EC;
    --primary-dark: #0088C2;
    --secondary-color: #FF6B35;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --dark-color: #212529;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --border-color: #DEE2E6;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-gray);
}

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

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-apply {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-apply {
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    padding: 8px 16px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-save {
    background: transparent;
    border: 2px solid var(--medium-gray);
    color: var(--medium-gray);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-save:hover {
    background: var(--medium-gray);
    color: var(--white);
}

.btn-clear {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

.btn-applied {
    background: var(--success-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: not-allowed;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00A5EC 0%, #0088C2 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid var(--border-color);
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-icon {
    color: var(--medium-gray);
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: var(--dark-color);
}

.search-input::placeholder {
    color: var(--medium-gray);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stat-item p {
    opacity: 0.9;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.category-card p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Job Card */
.job-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.job-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.job-header-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.company-name {
    color: var(--medium-gray);
    font-size: 14px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.job-location,
.job-experience {
    font-size: 14px;
    color: var(--medium-gray);
}

.job-type {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.job-type.fulltime {
    background: #E3F2FD;
    color: #1976D2;
}

.job-type.parttime {
    background: #F3E5F5;
    color: #7B1FA2;
}

.job-type.internship {
    background: #FFF3E0;
    color: #F57C00;
}

.job-type.contract {
    background: #E8F5E9;
    color: #388E3C;
}

.job-description {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-tag {
    background: var(--light-gray);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--dark-color);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.job-salary {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

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

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: var(--medium-gray);
}

/* Jobs Page */
.jobs-page {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.quick-filters {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.quick-filter-btn {
    padding: 6px 12px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Jobs Content */
.jobs-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card-horizontal {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.job-card-horizontal:hover {
    box-shadow: var(--shadow-md);
}

.job-card-left {
    flex-shrink: 0;
}

.job-card-center {
    flex: 1;
}

.job-card-center h3 a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 20px;
}

.job-card-center h3 a:hover {
    color: var(--primary-color);
}

.job-card-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.job-footer-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 14px;
}

.job-source {
    color: var(--medium-gray);
}

.no-jobs {
    text-align: center;
    padding: 60px 20px;
}

.no-jobs h2 {
    margin-bottom: 10px;
}

/* Job Details Page */
.job-details-page {
    padding: 40px 0;
    background: var(--light-gray);
}

.job-details-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.job-details-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-header-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.job-header-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.company-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}

.job-header-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.company-name-large {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.job-meta-large {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-category {
    font-size: 14px;
    color: var(--medium-gray);
}

.job-salary-large {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.job-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.job-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requirements-list li {
    padding-left: 25px;
    position: relative;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.job-skills-large {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.job-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item strong {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Job Details Sidebar */
.job-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apply-card,
.sidebar-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.apply-note {
    text-align: center;
    margin-top: 15px;
    color: var(--medium-gray);
    font-size: 14px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.company-info {
    text-align: center;
}

.company-info img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.company-info h4 {
    margin-bottom: 5px;
}

.company-location {
    color: var(--medium-gray);
    font-size: 14px;
}

.similar-jobs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-job-item {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s;
}

.similar-job-item:hover {
    background: var(--light-gray);
}

.similar-job-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.similar-job-item p {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.similar-job-location {
    font-size: 12px;
    color: var(--medium-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--medium-gray);
    cursor: pointer;
}

.close:hover {
    color: var(--dark-color);
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Auth Page */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #00A5EC 0%, #0088C2 100%);
}

.auth-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--medium-gray);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer p {
    margin-bottom: 10px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Dashboard */
.dashboard-page {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.profile-card h3 {
    margin-bottom: 5px;
}

.profile-card p {
    color: var(--medium-gray);
    font-size: 14px;
}

.dashboard-nav {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-nav-item {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.dashboard-nav-item:last-child {
    border-bottom: none;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
    background: var(--light-gray);
    color: var(--primary-color);
}

.dashboard-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 36px;
}

.stat-info h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--medium-gray);
    font-size: 14px;
}

.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.application-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.app-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.app-info {
    flex: 1;
}

.app-info h3 a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 18px;
}

.app-info h3 a:hover {
    color: var(--primary-color);
}

.app-info p {
    color: var(--medium-gray);
    margin: 5px 0;
}

.app-date {
    font-size: 14px;
    color: var(--medium-gray);
}

.app-status {
    text-align: right;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: #FFF3E0;
    color: #F57C00;
}

.status-badge.accepted {
    background: #E8F5E9;
    color: #388E3C;
}

.status-badge.rejected {
    background: #FFEBEE;
    color: #D32F2F;
}

.saved-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.profile-form {
    max-width: 600px;
}

.info-text {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.8;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .jobs-layout,
    .job-details-layout,
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar,
    .job-details-sidebar,
    .dashboard-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-input-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px;
    }

    .search-input-group:last-of-type {
        border-bottom: none;
    }

    .stats {
        gap: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-card-horizontal {
        flex-direction: column;
    }

    .job-card-right {
        flex-direction: row;
        align-items: center;
    }

    .job-header-top {
        flex-direction: column;
        text-align: center;
    }

    .job-header-info h1 {
        font-size: 24px;
    }

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

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

    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

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

    .job-footer-info {
        flex-direction: column;
        gap: 5px;
    }

    .application-card {
        flex-direction: column;
        text-align: center;
    }

    .app-status {
        text-align: center;
    }
}
