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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        background: #ffffff;
        color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
    }


    .cta-button {
        background: #1a1a1a;
        color: #fbbf24;
        padding: 0.7rem 1.8rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.4s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .cta-button:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
        color: #1a1a1a;
        padding: 8rem 5% 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
    }

    .hero-content {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.3rem;
        color: #2d2d2d;
        margin-bottom: 2rem;
    }

    .hero-stats {
        display: flex;
        gap: 3rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a1a1a;
        display: block;
    }

    .stat-label {
        font-size: 1rem;
        color: #2d2d2d;
        font-weight: 600;
    }

    /* Why Join Section */
    .why-join-section {
        max-width: 1400px;
        margin: 5rem auto;
        padding: 0 5%;
    }

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

    .section-header h2 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header p {
        font-size: 1.2rem;
        color: #555;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .benefit-card {
        background: white;
        border: 2px solid #fef3c7;
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
        border-color: #fbbf24;
    }

    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .benefit-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.8rem;
    }

    .benefit-card p {
        color: #555;
        line-height: 1.7;
    }

    /* Jobs Section */
    .jobs-section {
        max-width: 1200px;
        margin: 5rem auto;
        padding: 0 5%;
    }

    .jobs-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .job-card {
        background: white;
        border: 2px solid #fef3c7;
        border-radius: 20px;
        padding: 3rem;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
        position: relative;
        overflow: hidden;
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, #fbbf24, #f59e0b);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .job-card:hover {
        border-color: #fbbf24;
        box-shadow: 0 10px 40px rgba(251, 191, 36, 0.25);
    }

    .job-card:hover::before {
        opacity: 1;
    }

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

    .job-title {
        flex: 1;
    }

    .job-title h3 {
        font-size: 2rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .job-meta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .job-badge {
        background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
        border: 1px solid #fef3c7;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .job-badge.featured {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-color: #fbbf24;
    }

    .job-description {
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .job-section {
        margin-bottom: 2rem;
    }

    .job-section h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .job-section ul {
        list-style: none;
        margin-left: 0;
    }

    .job-section li {
        padding: 0.5rem 0 0.5rem 1.8rem;
        position: relative;
        color: #555;
        line-height: 1.7;
    }

    .job-section li:before {
        content: "→";
        position: absolute;
        left: 0;
        color: #fbbf24;
        font-weight: bold;
    }

    .tech-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .tech-tag {
        background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
        border: 1px solid #fef3c7;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .job-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid #fef3c7;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .job-salary {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
    }

    .apply-btn {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #1a1a1a;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s;
        display: inline-block;
    }

    .apply-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    }

    /* Culture Section */
    .culture-section {
        background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
        padding: 5rem 5%;
        margin: 5rem 0;
        position: relative;
    }

    .culture-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top right, transparent 49%, #ffffff 50%);
    }

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

    .culture-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .culture-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
    }

    .culture-content p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .culture-highlights {
        list-style: none;
        margin-top: 2rem;
    }

    .culture-highlights li {
        padding: 0.8rem 0 0.8rem 2rem;
        position: relative;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 1.05rem;
    }

    .culture-highlights li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #fbbf24;
        font-weight: bold;
        font-size: 1.3rem;
    }

    .culture-image {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-radius: 20px;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6rem;
        opacity: 0.3;
        box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
    }

    /* Application Process */
    .process-section {
        max-width: 1200px;
        margin: 5rem auto;
        padding: 0 5%;
    }

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

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #1a1a1a;
        font-size: 2rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }

    .process-step h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.8rem;
    }

    .process-step p {
        color: #555;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
        padding: 5rem 5%;
        margin: 0rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top right, transparent 49%, #ffffff 50%);
    }

    .cta-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        font-weight: 800;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #2d2d2d;
        margin-bottom: 2rem;
    }

    .btn-primary {
        background: #1a1a1a;
        color: #fbbf24;
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.4s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: inline-block;
    }

    .btn-primary:hover {
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    }


    /* Responsive */
    @media (max-width: 968px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .job-header {
            flex-direction: column;
        }

        .job-footer {
            flex-direction: column;
            align-items: flex-start;
        }

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

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

        .nav-links {
            display: none;
        }

        .hero::after,
        .cta-section::before,
        .culture-section::before {
            background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
        }
    }