/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables - Modern Corporate with Fun */
:root {
    --primary-color: #2d8659;
    --primary-dark: #1f6b48;
    --primary-light: #3da372;
    --accent-color: #ff6b35;
    --accent-light: #ff8c66;
    --secondary-color: #00b894;
    --green-accent: #28a745;
    --green-light: #4caf50;
    --text-color: #1a1a1a;
    --text-light: #6c757d;
    --text-muted: #868e96;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --bg-accent: #e8f5e9;
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(45, 134, 89, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-sm: 6px;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-accent);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--bg-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--green-accent);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--green-accent), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a {
    text-decoration: none;
    background: linear-gradient(135deg, var(--green-accent), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.site-title a:hover {
    filter: brightness(1.1);
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    position: relative;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--green-accent);
    background: #f0fdf4;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--green-accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: calc(100% - 1.5rem);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    position: relative;
    overflow-x: hidden;
}

/* Homepage */
.homepage {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.homepage::after {
    content: '';
    display: table;
    clear: both;
}

/* Hero Section - Compact */
.hero-section,
.homepage > .container > div:first-child {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green-accent), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(45, 134, 89, 0.25);
    border-color: var(--green-accent);
    background: #ffffff;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-accent), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Categories Section - Masonry Layout */
.categories-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 200px;
}

.categories-section::after {
    content: '';
    display: table;
    clear: both;
}

.category-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 0.875rem;
    transition: var(--transition);
    margin-bottom: 0.75rem;
    box-sizing: border-box;
    width: calc(33.333% - 0.75rem);
    float: left;
    margin-right: 1rem;
    border: 2px solid var(--border-light);
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-accent), var(--primary-color));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.category-card:nth-child(3n) {
    margin-right: 0;
}

.category-card:nth-child(3n+1),
.category-card:nth-child(3n+2) {
    margin-right: 1rem;
}

.category-card:hover {
    box-shadow: 0 12px 32px rgba(45, 134, 89, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--green-accent);
    border-width: 2px;
    background: #ffffff;
}

.category-card:hover::after {
    opacity: 1;
    height: 6px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.category-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-gray));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(8deg);
    border-color: var(--green-accent);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(45, 134, 89, 0.1));
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.category-title-wrapper {
    flex: 1;
}

.category-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.0625rem 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.category-card:hover .category-title {
    color: var(--green-accent);
    transform: translateX(2px);
}

.category-count {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.2;
}

/* Job Links List */
.job-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.job-link-item {
    margin-bottom: 0.375rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--border-light);
}

.job-link-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.job-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9375rem;
}

.job-link:hover {
    background: #f0fdf4;
    transform: translateX(6px);
    border-left: 4px solid var(--green-accent);
    padding-left: calc(0.75rem - 4px);
}

.job-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--green-accent);
    border-radius: 0 2px 2px 0;
    transition: var(--transition);
}

.job-link:hover::before {
    height: 70%;
}

.job-link-name {
    font-weight: 500;
    color: var(--primary-color);
    flex: 1;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
    line-height: 1.3;
}

.job-link:hover .job-link-name {
    color: var(--green-accent);
    font-weight: 700;
    transform: translateX(2px);
}

.external-link-icon {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.job-link:hover .external-link-icon {
    opacity: 1;
    color: var(--green-accent);
    transform: translate(3px, -3px) scale(1.2);
}

.job-link-description {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    margin-left: 0.5rem;
    line-height: 1.3;
}

/* Category Page */
.category-page {
    padding: 2rem 0;
    min-height: 60vh;
}

.category-content {
    margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--green-accent);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

/* Category Page Header */
.category-page .category-header {
    display: block;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.category-page-title {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--green-accent), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-page-description {
    display: block;
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Category Footer */
.category-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.back-to-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
}

.back-to-home-link:hover {
    color: var(--green-accent);
    background: #f0fdf4;
    border-color: var(--green-accent);
    transform: translateX(-4px);
}

.category-title-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-title-link:hover {
    color: var(--green-accent);
}

/* Buttons */
.btn,
.btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.1;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45, 134, 89, 0.12);
}

.btn:focus-visible {
    outline: 3px solid rgba(45, 134, 89, 0.35);
    outline-offset: 2px;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(45, 134, 89, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}

.btn-secondary {
    background: #edf2f7;
    border-color: #d1d5db;
    color: var(--text-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: rgba(45, 134, 89, 0.08);
    color: var(--primary-dark);
}

.btn-outline-secondary {
    background: transparent;
    border-color: #d1d5db;
    color: var(--text-color);
}

.btn-outline-secondary:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-warning {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
}

.btn-warning:hover {
    background: #d97706;
    border-color: #d97706;
}

.btn-danger {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.btn-outline-danger {
    background: transparent;
    border-color: #dc2626;
    color: #dc2626;
}

.btn-outline-danger:hover {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}

.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

.btn-group-sm .btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
}

.btn-close {
    position: relative;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
}

.btn-close::before {
    transform: rotate(45deg);
}

.btn-close::after {
    transform: rotate(-45deg);
}

.btn-close:hover {
    background: rgba(15, 23, 42, 0.1);
}

body.modal-open {
    overflow: hidden;
}

/* Form Elements */
.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-control,
.form-select,
textarea.form-control,
select.form-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus,
select.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.15);
    outline: none;
}

.form-text {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.text-muted {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    padding-right: 1rem;
}

/* Report Modal */
.report-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.55);
    z-index: 2000;
    overflow-y: auto;
}

.report-modal.is-visible {
    display: flex;
}

.report-modal__overlay {
    position: absolute;
    inset: 0;
}

.report-modal__dialog {
    position: relative;
    width: min(640px, 100%);
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    z-index: 1;
    transform: translateY(12px);
    animation: reportModalSlide 0.25s ease forwards;
}

.report-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.08), rgba(255, 255, 255, 0.95));
}

.report-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.report-modal__close {
    flex-shrink: 0;
}

.report-modal__body {
    padding: 1.5rem;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.report-form__link-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-form__link-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.report-form__label--inline {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.report-form__link-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    word-break: break-word;
}

.report-form__link-url {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-break: break-all;
}

.report-form__tag {
    align-self: flex-start;
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.report-form__honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.report-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-form__required {
    color: #dc2626;
}

.report-form__captcha {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.report-form__captcha-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    min-width: 64px;
    border-radius: var(--radius);
    background: rgba(45, 134, 89, 0.1);
    border: 1px solid rgba(45, 134, 89, 0.25);
    font-weight: 700;
    color: var(--primary-dark);
}

.report-form__captcha-input {
    max-width: 180px;
}

.report-form__alerts {
    min-height: 0;
}

.report-form__status {
    margin-top: -0.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.report-form__status--error {
    color: #b91c1c;
}

.report-alert {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.report-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
    color: #166534;
}

.report-alert--danger {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.25);
    color: #7f1d1d;
}

.report-alert__close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0 0.25rem;
    transition: var(--transition-fast);
}

.report-alert__close:hover {
    transform: scale(1.1);
}

.report-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@keyframes reportModalSlide {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .report-modal__dialog {
        width: 100%;
    }

    .report-modal__body {
        padding: 1.25rem;
    }

    .report-form__captcha {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-form__captcha-input {
        max-width: 100%;
    }
}

.no-links-message,
.no-categories-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
    color: #ffffff;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--accent-color);
    clear: both;
    width: 100%;
    position: relative;
}

.footer-content {
    text-align: center;
    max-width: 100%;
}

.footer-content p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-links {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer Categories */
.footer-categories {
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-category-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    padding: 0.125rem 0.375rem;
    white-space: nowrap;
}

.footer-category-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links a {
    color: #93c5fd;
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .category-card {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .category-card {
        width: calc(50% - 0.5rem) !important;
        margin-right: 1rem !important;
    }

    .category-card:nth-child(3n) {
        margin-right: 1rem !important;
    }

    .category-card:nth-child(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.125rem;
    }

    .category-card {
        padding: 0.75rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
    
    .category-header {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .category-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.25rem;
    }
}
