 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: white;
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }

        .about-container {
            max-width: 100%;
            width: 100%;
            margin: 0;
            background: white;
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
            position: relative;
        }

        .about-header {
            background: linear-gradient(135deg, #0a1849 0%, #2e6fbc 100%);
            padding: 60px 40px 80px;
            text-align: center;
            position: relative;
        }

        .about-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .section-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            color: #e2e2e2;
            font-size: 1.2rem;
            font-weight: 400;
            position: relative;
            z-index: 2;
        }

        /* Ana profil içeriği - Tek kutu düzeni */
.profile-content {
    display: block;
    padding: 60px 40px;
    position: relative;
    margin-top: -40px;
    z-index: 3;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

/* Tek büyük profil kutusu */
.profile-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(10, 24, 73, 0.08);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Sol taraf - Profil resmi */
.profile-image {
    width: 280px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10, 24, 73, 0.12);
    background: white;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Sağ taraf - Tüm içerik */
.profile-info-content {
    flex: 1;
    text-align: left;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0a1849;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.profile-title {
    font-size: 1.3rem;
    color: #f26538;
    font-weight: 500;
    margin-bottom: 10px;
}

/* İçerik paragrafları */
.content-text {
    color: #0a1849;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
    text-align: justify;
}

/* İletişim bilgisi */
.profile-contact {
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 0; /* Margin'i sıfırlayın */
    display: inline-block;
    width: 30%; /* Tam genişlik */
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a1849;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: #f26538;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Yetkinlikler başlığı */
.competencies-title {
    color: #0a1849;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 35px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competencies-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: #f26538;
    border-radius: 2px;
}

/* Yetkinlikler listesi */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    color: #0a1849;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: '';
    color: #f26538;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.profile-left {
     display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Gizle - Kullanılmayan bölümler */
.profile-content-text {
    display: none;
}

/* Tablet ve mobil uyumluluk */
@media (max-width: 968px) {
    .profile-card {
          flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 40px 30px; 
    }
    
    .profile-info-content {
        text-align: center;
    }
     .profile-left {
        width: 100%;
        align-items: center;
    }
    .profile-image {
        width: 250px;
        height: 300px;
    }
    
    .content-text {
        text-align: justify;
    }
}

@media (max-width: 768px) {
    .profile-content {
        padding: 40px 20px;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-image {
        width: 220px;
        height: 270px;
    }
    
    .profile-name {
        font-size: 1.9rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

       