/* Variables */
:root {
    --primary-color: #2e86de;
    --secondary-color: #54a0ff;
    --dark-color: #2c3e50;
    --light-color: #f5f6fa;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

/* Container */
.denetim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.denetim-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.denetim-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 60px);
}

.service-content p {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Button */
.service-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: var(--secondary-color);
}

.service-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .denetim-header h1 {
        font-size: 2rem;
    }
    
    .service-card h2 {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .denetim-container {
        padding: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.header {
    background-color: #2e3192;
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.process-step {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid #2e3192;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    background-color: #2e3192;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 10px;
}

.step-title {
    font-weight: 600;
    color: #2e3192;
    margin-bottom: 1.5rem;
}

.candidate-type {
    background-color: #e9ecef;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.candidate-type-title {
    font-weight: 600;
    color: #23243a;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}



.header {       
    color: #23243a;
    
    margin-bottom: 2rem;
}

.process-step {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid #23243a;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    background-color: #23243a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 10px;
}

.step-title {
    font-weight: 600;
    color: #23243a;
    margin-bottom: 1.5rem;
}

.candidate-type {
    background-color: #e9ecef;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.candidate-type-title {
    font-weight: 600;
    color: #23243a;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}
