  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(to bottom, #f5f7fa, #e6eef9);
            color: #333;
            padding: 20px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Header styles con colores dominicanos */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #C91D2E;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .flag-stripe {
            width: 10px;
            height: 40px;
            margin-right: 8px;
            border-radius: 2px;
        }
        
        .stripe-blue {
            background: #002D62;
        }
        
        .stripe-white {
            background: #FFFFFF;
            border: 1px solid #e2e8f0;
        }
        
        .stripe-red {
            background: #C91D2E;
        }
        
        h1 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(to right, #002D62, #C91D2E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        /* Search bar con colores dominicanos */
        .search-container {
            display: flex;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 45, 98, 0.15);
            overflow: hidden;
            width: 350px;
            border: 2px solid #002D62;
        }
        
        .search-container input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            outline: none;
            font-size: 16px;
            background: #f8fafc;
        }
        
        .search-container button {
            background: linear-gradient(to right, #002D62, #C91D2E);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-container button:hover {
            background: linear-gradient(to right, #001a42, #a01725);
        }
        
        /* Job count */
        .job-count {
            margin: 20px 0;
            font-size: 18px;
            color: #002D62;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 600;
        }


        .job-listings{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 20px;
            align-items: start;
        }
        
        /* Job listings con colores dominicanos */
        .job-listing {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 45, 98, 0.1);
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid #002D62;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .job-listing:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 45, 98, 0.2);
        }
        
        
        .job-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .job-title {
            font-size: 22px;
            font-weight: 700;
            color: #002D62;
        }
        
        .job-type {
            background: #e6f7ee;
            color: #0e9f6e;
            font-size: 14px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
        }
        
        .company {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        
        .job-details {
            display: flex;
            margin-bottom: 15px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .location, .experience {
            display: flex;
            align-items: center;
            margin-right: 20px;
            color: #4a5568;
            font-size: 15px;
            position: relative;
        }
        
        .location::before, .experience::before {
            content: '';
            display: inline-block;
            width: 18px;
            height: 18px;
            margin-right: 8px;
            border-radius: 50%;
        }
        
        .location::before {
            background: #002D62;
        }
        
        .experience::before {
            background: #C91D2E;
        }
        
        .salary {
            font-size: 18px;
            font-weight: 700;
            color: #002D62;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .tech-tags {
            display: flex;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        
        .tag {
            background: #f0f5ff;
            color: #002D62;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(0, 45, 98, 0.2);
        }
        
        .tag.more {
            background: #edf2f7;
            color: #718096;
        }
        
        .job-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .job-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            position: relative;
            z-index: 1;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 15px;
        }
        
        .btn-details {
            background: #f8fafc;
            color: #002D62;
            border: 2px solid #002D62;
        }
        
        .btn-details:hover {
            background: #002D62;
            color: white;
        }
        
        .btn-apply {
            background: linear-gradient(to right, #002D62, #C91D2E);
            color: white;
            box-shadow: 0 4px 10px rgba(201, 29, 46, 0.3);
        }
        
        .btn-apply:hover {
            background: linear-gradient(to right, #001a42, #a01725);
            transform: translateY(-2px);
        }
        
        .loading {
            text-align: center;
            padding: 30px;
            font-size: 18px;
            color: #002D62;
        }
        
        .loading i {
            font-size: 24px;
            margin-bottom: 10px;
            color: #C91D2E;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .error-message {
            background: #ffecec;
            border: 1px solid #ffa8a8;
            border-radius: 8px;
            padding: 20px;
            color: #C91D2E;
            text-align: center;
            margin: 20px 0;
        }
        
        /* Footer con colores dominicanos */
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #002D62;
            font-weight: 500;
            border-top: 1px solid rgba(0, 45, 98, 0.1);
        }
        
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-container {
                width: 100%;
                margin-top: 15px;
            }
            
            .job-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .job-type {
                margin-top: 10px;
            }
            
            .job-details {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .location, .experience {
                margin-bottom: 8px;
            }
            
            .job-actions {
                flex-direction: column;
            }
        }