
        :root {
            --tomato-primary: #ff6347;
            --tomato-dark: #e74c3c;
            --tomato-light: #ff8c7a;
            --tomato-bg: #fff5f3;
            --tomato-accent: #ff4500;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .careers-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .careers-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .careers-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--tomato-dark);
        }
        
        .culture-section {
            background-color: var(--tomato-bg);
            padding: 60px 0;
        }
        
        .culture-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .culture-text {
            flex: 1;
            min-width: 300px;
        }
        
        .culture-text h2 {
            color: var(--tomato-primary);
            margin-bottom: 20px;
        }
        
        .culture-image {
            flex: 1;
            min-width: 300px;
            background: url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            min-height: 400px;
        }
        
        .benefits-section {
            padding: 60px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--tomato-primary);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--tomato-primary);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            color: var(--tomato-dark);
            margin-bottom: 15px;
        }
        
        .openings-section {
            background-color: var(--tomato-bg);
            padding: 60px 0;
        }
        
        .job-listings {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .job-card {
            background: white;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .job-card h3 {
            color: var(--tomato-primary);
            margin-bottom: 10px;
        }
        
        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .job-description {
            margin-bottom: 20px;
        }
        
        .apply-btn {
            display: inline-block;
            background-color: var(--tomato-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .apply-btn:hover {
            background-color: var(--tomato-dark);
        }
        
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            color: white;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--tomato-primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--tomato-dark);
        }
 

        /* Careers Page Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    /* Hero Section */
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .careers-hero p {
        font-size: 1.1rem;
    }
    
    /* Culture Section */
    .culture-content {
        flex-direction: column;
    }
    
    .culture-image {
        order: -1;
        min-height: 300px;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Job Listings */
    .job-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .careers-hero {
        height: 40vh;
    }
    
    .careers-hero h1 {
        font-size: 2rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Adjust padding for fixed header */
    body {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    /* Hero Section */
    .careers-hero {
        height: 35vh;
        padding-top: 20px;
    }
    
    .careers-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .careers-hero p {
        font-size: 1rem;
    }
    
    /* Culture Section */
    .culture-text, .culture-image {
        min-width: 100%;
    }
    
    /* Job Listings */
    .job-card {
        padding: 20px;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

/* Special Cases for Very Small Screens */
@media (max-width: 400px) {
    .careers-hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card, .job-card {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .new-header, .cta-section {
        display: none;
    }
    
    body {
        padding-top: 0;
        background: none;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}