@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

        :root {
            --primary-dark: #010101;
            --accent-coral: #f17b77;
        }

        .jobs-section {
            background: #ffffff;
            padding: 120px 20px;
            font-family: 'Inter', sans-serif;
        }

        .jobs-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.4rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        /* Single Job Card - Boxy & Premium */
        .jobs-grid {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 980px;
            margin: 0 auto;
        }

        .job-card {
            background: white;
            border: 3px solid #e5e5e5;
            border-radius: 12px;
            padding: 48px 52px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }

        .job-card:hover {
            border-color: #010101;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .job-number {
            position: absolute;
            top: 32px;
            right: 32px;
            background: var(--primary-dark);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .job-title {
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .job-description {
            color: #444;
            line-height: 1.85;
            font-size: 1.1rem;
            margin-bottom: 42px;
        }

        /* Minimal Metallic Buttons */
        .job-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .job-btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: 2px solid #ccc;
            color: #333;
            background: transparent;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .job-btn:hover {
            border-color: var(--accent-coral);
            color: var(--accent-coral);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(241, 123, 119, 0.2);
        }

        .btn-register {
            border-color: var(--primary-dark);
            color: var(--primary-dark);
        }

        .btn-whatsapp {
            border-color: #25D366;
            color: #25D366;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .job-card {
                padding: 40px 32px;
            }
            .job-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
        }