/* Careers Hero Section */
    .careers-hero {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .careers-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .careers-hero span.highlight {
        color: #17ef97;
    }

    .careers-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: #f0f0f0;
    }

    /* Jobs Section */
    .jobs-section {
        padding: 2rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .jobs-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .job-card {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        padding: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #222;
        position: relative;
        overflow: hidden;
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #17ef97;
        transition: width 0.3s ease;
    }

    .job-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.1);
        border-color: #17ef97;
    }

    .job-card:hover::before {
        width: 7px;
    }

    .job-type {
        display: inline-block;
        background: rgba(23, 239, 151, 0.1);
        color: #17ef97;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .job-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #fff;
    }

    .job-description {
        margin-bottom: 1.5rem;
        color: #e0e0e0;
    }

    .skills-section h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #17ef97;
    }

    .skills-list {
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .skills-list li {
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
        position: relative;
        color: #ccc;
    }

    .skills-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #17ef97;
    }

    .apply-btn {
        display: inline-block;
        padding: 0.9rem 2rem;
        background: transparent;
        color: #17ef97;
        text-decoration: none;
        border: 2px solid #17ef97;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 600;
        margin-top: 1rem;
    }

    .apply-btn:hover {
        background: #17ef97;
        color: #000;
        transform: scale(1.05);
    }

    /* Why Join Us Section */
    .why-join-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        margin-bottom: 4rem;
    }

    .why-join-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-join-section span.highlight {
        color: #17ef97;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .benefit-card {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease;
        border: 1px solid #222;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        border-color: #17ef97;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
        color: #17ef97;
        margin-bottom: 1rem;
    }

    .benefit-card p {
        color: #e0e0e0;
    }

    /* Testimonials Section */
    .careers-testimonials {
        padding: 2rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .careers-testimonials h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2rem;
        border: 1px solid #222;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 4rem;
        color: rgba(23, 239, 151, 0.1);
        font-family: Georgia, serif;
    }

    .testimonial-text {
        font-style: italic;
        color: #e0e0e0;
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .testimonial-author {
        text-align: right;
        color: #17ef97;
        font-weight: 600;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 2rem;
        max-width: 800px;
        margin: 0 auto 4rem;
        text-align: center;
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        border: 1px solid #222;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        color: #e0e0e0;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        transition: transform 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        transform: scale(1.05);
    }
    
    /* Mobile Responsive */
    @media (max-width: 992px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }