 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f5f7ff;
            color: #333;
            overflow-x: hidden;
        }

        .section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .section-blue {
            background-color: #ebf3ff;
            position: relative;
        }

        .section-blue::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(74, 144, 255, 0.1) 0%, transparent 80%);
            z-index: 0;
        }

        .section-white {
            background-color: #ffffff;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Animaciones */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Sección Hero */
        .hero-section {
            padding-top: 3rem;
            padding-bottom: 4rem;
            background-image: linear-gradient(135deg, #f5f7ff 0%, #e1e9ff 100%);
            overflow: visible;
            z-index: 10;
            position: relative;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(74, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(74, 144, 255, 0.15) 0%, transparent 40%);
            z-index: 0;
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2a2a5a;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            line-height: 1.2;
        }

        .hero-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            border-radius: 3px;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #555;
            margin-bottom: 2rem;
            text-align: center;
            margin-top: 1.5rem;
        }

        /* Barra de búsqueda */
        .search-wrapper {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            margin-bottom: 2rem;
        }

        .search-section {
            display: flex;
            width: 100%;
            gap: 1rem;
            margin-top: 2rem;
            background: white;
            padding: 0.75rem;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
            position: relative;
            z-index: 20;
        }

        .search-input {
            flex: 2;
            position: relative;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            background-color: #f5f7ff;
            transition: all 0.3s ease;
        }

        .search-input:focus-within {
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.1);
            border-color: #0066ff;
            background-color: white;
        }

        .search-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: #0066ff;
            font-size: 1rem;
        }

        .search-input input {
            width: 100%;
            padding: 1.1rem 1rem 1.1rem 3.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
        }

        /* Dropdown personalizado */
        .location-dropdown {
            flex: 1;
            position: relative;
        }

        .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-selected {
            width: 100%;
            padding: 1.1rem 2.5rem 1.1rem 1.25rem;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background-color: #f5f7ff;
            font-size: 1rem;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dropdown-selected:hover,
        .dropdown-selected.active {
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.1);
            border-color: #0066ff;
            background-color: white;
        }

        .dropdown-icon {
            transition: transform 0.3s ease;
            color: #6b7280;
        }

        .dropdown-selected.active .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            max-height: 300px;
            overflow-y: auto;
            z-index: 99999;
            display: none;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-search {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            background: white;
            z-index: 1;
        }

        .dropdown-search input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .dropdown-search input:focus {
            border-color: #0066ff;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .dropdown-search i {
            position: absolute;
            left: 1.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .dropdown-list {
            padding: 0.5rem;
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
        }

        .dropdown-item:hover {
            background-color: #f5f7ff;
        }

        .dropdown-item.selected {
            background-color: #e6f0ff;
            color: #0066ff;
            font-weight: 500;
        }

        .dropdown-item-count {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .no-results {
            padding: 2rem 1rem;
            text-align: center;
            color: #9ca3af;
        }

        .search-button {
            background: linear-gradient(90deg, #0066ff, #0052cc);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 0 2rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
        }

        .search-button:hover {
            background: linear-gradient(90deg, #0052cc, #004099);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
        }

        /* Imagen Hero */
        .careers-wrapper {
            position: relative;
            margin-bottom: 1rem;
            width: 100%;
            z-index: 1;
        }

        .careers-image {
            width: 100%;
            max-width: 650px;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.5s ease;
        }

        .careers-wrapper:hover .careers-image {
            transform: perspective(1000px) rotateY(2deg);
        }

        .careers-wrapper::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00c6ff, #0066ff);
            top: -20px;
            left: -20px;
            z-index: -1;
            opacity: 0.8;
        }

        .careers-wrapper::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00c6ff, #0066ff);
            bottom: -10px;
            right: -10px;
            z-index: -1;
            opacity: 0.8;
        }

        /* Tarjetas de rol */
        .role-container {
            display: flex;
            gap: 2.5rem;
            width: 100%;
            margin-top: 1.5rem;
            margin-bottom: 3rem;
        }

        .role-card {
            position: relative;
            flex: 1;
            height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border-radius: 24px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
        }

        .role-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        #left-card {
            overflow: hidden;
            border-radius: 24px;
        }

        #right-card {
            overflow: hidden;
            border-radius: 24px;
        }

        .role-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: filter 0.5s ease, transform 0.7s ease;
            object-position: center;
        }

        .role-card:hover img {
            filter: brightness(0.5);
            transform: scale(1.08);
        }

        .role-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 1;
            opacity: 0.8;
            transition: opacity 0.5s ease;
        }

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

        .role-card-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            width: 100%;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }

        .role-card:hover .role-card-content {
            transform: translateY(0);
        }

        .role-card-content h2 {
            margin: 0;
            font-size: 2.25rem;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .role-card-content h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            border-radius: 3px;
        }

        .btn-role {
            padding: 0.9rem 2rem;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .btn-role::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .btn-role:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-role:hover::before {
            left: 100%;
        }

        .role-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: #0066ff;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .role-card:hover .role-badge {
            transform: translateY(0);
            opacity: 1;
        }

        /* Sección de títulos */
        .section-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #2a2a5a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            border-radius: 2px;
        }

        .section-description {
            font-size: 1.125rem;
            color: #555;
            margin-top: 1.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Sección de Mockup Mobile App */
        .mockup-section {
            padding-top: 3rem;
            margin-top: 2rem;
        }

        .mockup-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .mockup-content {
            flex: 1;
            max-width: 500px;
            text-align: left;
            min-width: 280px;
        }

        .mockup-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2a2a5a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .mockup-description {
            font-size: 1.125rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .app-stores {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .app-store-link {
            display: block;
            transition: transform 0.3s ease;
        }

        .app-store-link:hover {
            transform: translateY(-3px);
        }

        .app-store-link img {
            height: 60px;
            width: auto;
            max-width: 100%;
        }

        .mockup-image-container {
            flex: 1;
            max-width: 600px;
            min-width: 280px;
            text-align: center;
        }

        .mockup-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Sección de empresas con slider */
        .companies-section {
            position: relative;
        }

        .company-cards-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .company-cards {
            display: flex;
            gap: 1.5rem;
            padding: 1.25rem 0;
            width: max-content;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 5 - 24px * 5));
            }
        }

        .company-cards:hover {
            animation-play-state: paused;
        }

        .company-card {
            min-width: 200px;
            max-width: 200px;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease-out;
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(0, 102, 255, 0.1);
        }

        .company-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card-banana {
            background-color: #e6f0ff;
            background-image: linear-gradient(135deg, #e6f0ff 0%, #d4e4ff 100%);
        }

        .card-strawberry {
            background-color: #cce0ff;
            background-image: linear-gradient(135deg, #cce0ff 0%, #b3d1ff 100%);
        }

        .card-purple {
            background-color: #99c2ff;
            background-image: linear-gradient(135deg, #99c2ff 0%, #80b3ff 100%);
        }

        .card-deep-blue {
            background-color: #4d94ff;
            background-image: linear-gradient(135deg, #4d94ff 0%, #3385ff 100%);
        }

        .card-sky-blue {
            background-color: #e6f7ff;
            background-image: linear-gradient(135deg, #e6f7ff 0%, #ccefff 100%);
        }

        .company-logo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background-color: #f3f4f6;
            margin-top: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            text-align: center;
            font-size: 1.25rem;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .company-logo::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
            transform: rotate(35deg) translateY(100px);
            transition: transform 0.6s ease;
        }

        .company-card:hover .company-logo::after {
            transform: rotate(35deg) translateY(0);
        }

        .company-card:hover .company-logo {
            transform: scale(1.1) rotate(5deg);
        }

        .logo-white {
            background-color: white;
        }

        .promo-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 2;
            transform: rotate(-15deg);
            transition: transform 0.3s ease;
        }

        .company-card:hover .promo-badge {
            transform: rotate(0deg);
        }

        .promo-badge-text {
            color: #0066ff;
            font-size: 1rem;
        }

        .company-name {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 1.5rem;
            text-align: center;
            color: #2a2a5a;
            padding: 0 1rem;
            word-wrap: break-word;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.3;
            max-height: 2.6em;
        }

        .action-button {
            margin-top: auto;
            margin-bottom: 2rem;
            padding: 0.75rem 1.75rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            color: white;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
        }

        .action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 102, 255, 0.3);
        }

        .btn-orange,
        .btn-purple,
        .btn-pink,
        .btn-yellow {
            background: linear-gradient(90deg, #0066ff, #00c6ff);
        }

        .btn-orange:hover,
        .btn-purple:hover,
        .btn-pink:hover,
        .btn-yellow:hover {
            background: linear-gradient(90deg, #0052cc, #00a3d9);
        }

        .blue-text {
            color: #0066ff;
        }

        /* Sección de trabajos recomendados */
        .recommended-section {
            width: 100%;
            position: relative;
        }

        .job-cards-container {
            width: 100%;
            position: relative;
        }

        .job-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .job-card {
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease-out;
            border: 1px solid rgba(0, 102, 255, 0.1);
            padding: 0;
            height: 100%;
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .job-card-header {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
        }

        .company-badge {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1.25rem;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 1.25rem;
            color: #2a2a5a;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            position: relative;
        }

        .company-badge img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .company-logo-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-color: white;
        }

        .job-header-info {
            flex: 1;
        }

        .job-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.375rem;
            line-height: 1.4;
        }

        .company-info {
            font-size: 0.95rem;
            color: #4b5563;
        }

        .job-domain {
            color: #0066ff;
            font-weight: 500;
        }

        .job-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

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

        .job-details {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #4b5563;
            font-size: 0.95rem;
            background-color: #f5f7ff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .job-card:hover .detail-item {
            background-color: #e6f0ff;
        }

        .detail-icon {
            color: #0066ff;
        }

        .salary {
            background: linear-gradient(90deg, #f0f0ff, #e6e6ff);
            color: #0052cc;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
            width: fit-content;
        }

        .job-card-footer {
            padding: 1.5rem;
            border-top: 1px solid rgba(0, 102, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fafbff;
        }

        .job-deadline {
            font-size: 0.95rem;
            font-weight: 500;
            color: #0066ff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .apply-button {
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
        }

        .apply-button:hover {
            background: linear-gradient(90deg, #0052cc, #00a3d9);
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 102, 255, 0.3);
        }

        /* Decoraciones */
        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
        }

        .decoration-circle-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
            top: 5%;
            left: -100px;
        }

        .decoration-circle-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 198, 255, 0.03) 100%);
            bottom: 10%;
            right: -150px;
        }

        .decoration-circle-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, rgba(255, 204, 0, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
            top: 40%;
            right: 10%;
        }

        .notification {
            position: fixed;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4caf50;
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: all 0.5s ease-in-out;
        }

        .notification.show {
            top: 20px;
            opacity: 1;
        }

        .notification i {
            font-size: 1.2rem;
        }

        /* Media queries */
        @media (max-width: 1100px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .container {
                padding: 0 1.5rem;
            }

            .role-container {
                flex-direction: column;
                gap: 2rem;
            }

            .role-card {
                width: 100%;
                height: 280px;
            }

            .role-card-content h2 {
                font-size: 1.75rem;
            }

            .job-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }

            .mockup-container {
                flex-direction: column;
                text-align: center;
            }

            .mockup-content {
                text-align: center;
            }

            .app-stores {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }

            .hero-title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .search-section {
                flex-direction: column;
                padding: 0.75rem;
                width: 100%;
                box-sizing: border-box;
            }

            .search-input,
            .location-dropdown {
                width: 100%;
                margin-bottom: 0.75rem;
                box-sizing: border-box;
            }

            .search-button {
                width: 100%;
                box-sizing: border-box;
                padding: 0.75rem;
            }

            .job-cards-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .mockup-title {
                font-size: 2rem;
            }

            .role-card {
                height: 250px;
            }

            .role-card-content {
                padding: 1.5rem;
            }

            .role-card-content h2 {
                font-size: 1.5rem;
                padding-bottom: 0.75rem;
                margin-bottom: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .mockup-title {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }