/* Free Crypto Jobs Board - Modern Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #E6F2FF;
    --secondary-color: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --success-color: #10B981;
    --error-color: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

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

/* Header */
.main-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 20px 30px;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--bg-white);
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 50%, #003d7a 100%);
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 60px 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 18px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: var(--secondary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

/* Navigation */
nav {
    margin: 20px auto 25px auto;
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Remote Filter */
.remote-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.remote-filter label {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.remote-filter input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.remote-filter i {
    color: var(--primary-color);
}

/* Job List */
.job-list {
    list-style: none;
}

.job-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.job-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.job-item.remote-hidden {
    display: none;
}

.job-header {
    margin-bottom: 15px;
}

.job-title-wrapper {
    margin-bottom: 10px;
}

.job-title-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}

.job-title-link:hover {
    color: var(--primary-dark);
}

.job-expand-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.job-title {
    font-size: 22px;
    font-weight: 700;
}

.job-company {
    font-size: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.job-company i {
    color: var(--primary-color);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.remote-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-description {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    transition: all 0.3s ease;
    overflow: hidden;
}

.job-description.collapsed {
    max-height: 80px;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    cursor: pointer;
}

.job-description.expanded {
    max-height: 2000px;
    mask-image: none;
    -webkit-mask-image: none;
    cursor: pointer;
}

.description-content {
    padding: 10px 0;
}

/* Job Actions */
.job-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.apply-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.apply-btn:active {
    transform: translateY(0);
}

.contact-info {
    margin-top: 15px;
    padding: 15px;
    background: var(--primary-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-link i {
    font-size: 14px;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 30px;
    margin: -40px -40px 30px -40px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header .subtitle {
    font-size: 16px;
    opacity: 0.95;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label .required {
    color: var(--error-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.radio-group label:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-group input[type="radio"]:checked + span {
    color: var(--primary-color);
}

.salary-range {
    display: flex;
    gap: 15px;
    align-items: center;
}

.salary-range input {
    flex: 1;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Challenge Modal */
.challenge-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.challenge-modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.challenge-modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.challenge-modal-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.challenge-question {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.challenge-modal-content input[type="number"] {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.challenge-modal-content input[type="number"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.challenge-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.challenge-submit-btn,
.challenge-cancel-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.challenge-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.challenge-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.challenge-cancel-btn {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.challenge-cancel-btn:hover {
    background: var(--border-color);
}

/* Confirmation Modal Buttons */
.confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.confirmation-post-btn,
.confirmation-cancel-btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.confirmation-post-btn {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--bg-white);
}

.confirmation-post-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.confirmation-cancel-btn {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.confirmation-cancel-btn:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.challenge-error {
    color: var(--error-color);
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    background: #FEE2E2;
    border-radius: var(--radius);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: var(--radius);
    border-left: 4px solid;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border-left-color: var(--success-color);
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border-left-color: var(--error-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.empty-state p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

/* About Page */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.about-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-header .about-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.about-section {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.about-section:hover {
    box-shadow: var(--shadow-md);
}

.about-section.highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.about-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.problem-list,
.disruption-list {
    list-style: none;
    margin-top: 20px;
}

.problem-list li,
.disruption-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s;
}

.problem-list li {
    border-left-color: var(--error-color);
}

.problem-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.disruption-list li {
    border-left-color: var(--success-color);
}

.disruption-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.problem-list li i,
.disruption-list li i {
    margin-top: 3px;
    font-size: 18px;
    flex-shrink: 0;
}

.problem-list li i {
    color: var(--error-color);
}

.disruption-list li i {
    color: var(--success-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.benefit-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-card ul li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

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

.stat-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.stat-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: all 0.2s;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    margin-top: 50px;
}

.cta-section h3 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .container > * {
        padding: 0 10px;
    }
    
    .jobs-section {
        padding: 10px;
    }

    .main-header {
        padding: 15px 20px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

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

    nav {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        width: 100%;
        justify-content: center;
    }

    .job-item {
        padding: 20px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .form-container {
        padding: 25px;
    }

    .form-header {
        margin: -25px -25px 25px -25px;
        padding: 25px;
    }

    .salary-range {
        flex-direction: column;
        gap: 10px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .radio-group label {
        width: 100%;
    }

    .challenge-modal-content {
        padding: 30px 20px;
    }

    .about-container {
        padding: 25px;
    }

    .about-header h2 {
        font-size: 28px;
        flex-direction: column;
    }

    .about-section {
        padding: 20px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
