
        :root {
            --primary-color: #4d008c; /* Mor renk (Gürok marka rengi) */
            --secondary-color: #0066cc; /* Mavi renk */
            --gradient-start: #0088ff; /* Gradient başlangıç (mavi) */
            --gradient-end: #5a0099; /* Gradient bitiş (mor) */
            --accent-color: #fd7e14; /* Turuncu vurgu rengi */
            --dark-color: #333333;
            --light-color: #f8f9fa;
            --gurok-pink: #e6417d; /* LAV için pembe renk */
            --gurok-green: #00b388; /* AVOVA için yeşil renk */
        }
        
    

        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-shape {
            position: absolute;
            right: 0;
            top: 10%;
            width: 45%;
            height: 80%;
            background-color: rgba(255,255,255,0.1);
            border-radius: 70% 0 0 70%;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .star-icon {
            color: var(--accent-color);
            margin-left: 5px;
        }
        
        /* Brands Strip */
        .brands-strip {
            background-color: white;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .brand-logo {
            height: 30px;
            margin: 0 15px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .brand-logo:hover {
            opacity: 1;
        }
        
        /* Requirements Section */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            border-radius: 2px;
        }
        
        .requirements-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }
        
        .requirements-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .card-icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        /* Benefits Section */
        .benefits-section {
            background-color: var(--light-color);
        }
        
        .benefit-item {
            padding: 20px;
            border-left: 4px solid var(--primary-color);
            margin-bottom: 15px;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        
        .benefit-item:hover {
            transform: translateX(5px);
            border-left-color: var(--accent-color);
        }
        
        /* Process Section */
        .process-section {
            position: relative;
        }
        
        .process-step {
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            background-color: white;
            position: relative;
            z-index: 1;
            border-left: 5px solid var(--primary-color);
        }
        
        .process-step::before {
            content: attr(data-step);
            position: absolute;
            top: -15px;
            left: -15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 2;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        
        .timeline {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
            transform: translateX(-50%);
            z-index: 0;
            display: none;
        }
        
        @media (min-width: 992px) {
            .timeline {
                display: block;
                left: 22px;
            }
            
            .process-container {
                padding-left: 50px;
            }
        }
        
        /* Roadmap Section */
        .roadmap-section {
            position: relative;
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        .roadmap-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
            background-color: white;
            padding: 20px 20px 20px 50px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .roadmap-item::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 25px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            z-index: 1;
        }
        
        .roadmap-item::after {
            content: '';
            position: absolute;
            left: 27px;
            top: 40px;
            width: 2px;
            height: calc(100% - 15px);
            background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
            z-index: 0;
        }
        
        .roadmap-item:last-child::after {
            display: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-shape {
            position: absolute;
            left: -200px;
            top: -100px;
            width: 500px;
            height: 500px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 50%;
            z-index: 0;
        }
        
        .cta-shape-2 {
            position: absolute;
            right: -200px;
            bottom: -100px;
            width: 400px;
            height: 400px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 50%;
            z-index: 0;
        }
        
        .btn-cta {
            background-color: white;
            color: var(--primary-color);
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-cta:hover {
            background-color: transparent;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-brand {
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Job List Styles (like your existing site) */
        .job-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .job-company-logo {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-right: 15px;
        }
        
        .job-company-logo.lav {
            background-color: var(--gurok-pink);
        }
        
        .job-company-logo.avova {
            background-color: var(--gurok-green);
        }
        
        .job-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .job-company {
            color: #666;
            font-size: 0.9rem;
        }
        
        .job-location {
            display: flex;
            align-items: center;
        }
        
        .job-location-icon {
            background-color: var(--primary-color);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
        
        .btn-apply {
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-apply:hover {
            background-color: #4a1570;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-shape {
                width: 100%;
                right: -50%;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .process-step::before {
                left: -10px;
            }
			
			.hero-section {
				border-radius: 0px;
				margin: 0px;
        }
			
			/* Başvuru Formu Stilleri */
.form-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(90, 28, 133, 0.25);
    background-color: #fff;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-file-upload {
    position: relative;
    overflow: hidden;
}

.custom-file-upload input[type="file"] {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
}

.custom-file-upload .file-upload-info {
    font-size: 0.875rem;
    color: #6c757d;
}

.apply-section .form-card {
    background-color: white;
    z-index: 1;
    position: relative;
}

/* Form gönderim butonu özel stili */
.form-card .btn-apply {
    font-size: 1rem;
    padding: 0.75rem 3rem;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(90, 28, 133, 0.3);
    transition: all 0.3s;
}

.form-card .btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 28, 133, 0.4);
    background-color: #4a1570;
}

/* Form kısmı için responsive düzenlemeler */
@media (max-width: 767px) {
    .form-card {
        padding: 1.5rem;
    }
    
    .form-control, .form-select {
        padding: 0.8rem 1.2rem;
    }
}

.text-icon-color {
    color: red;
}