.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.content-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.profile-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-header .title {
    font-size: 1.3rem;
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 0;
}

.bio-content {
    margin-bottom: 3rem;
}

.bio-content p {
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.75;
    overflow: visible;
    font-size: 1.05rem;
    color: #444;
}

/* Resim Bölümleri - Yeni Tasarım */
.bio-content p.with-image-left,
.bio-content p.with-image-right,
.bio-content p.with-image-center {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-inline {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    background: #f8f9fa;
    padding: 2px;
    display: block;
    margin: 0;
    width: 140px;
    height: 140px;
}

.image-inline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 7px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.image-inline:hover::after {
    opacity: 0.3;
}

.image-inline:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.15);
}

.bio-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.image-inline:hover .bio-image {
    transform: scale(1.01);
}

/* Sol Hizalı Resim */
.bio-content p.with-image-left {
    flex-direction: row;
}

/* Ortalanmış Resim */
.bio-content p.with-image-center {
    flex-direction: row;
}

/* Sağ Hizalı Resim */
.bio-content p.with-image-right {
    flex-direction: row-reverse;
}

.info-cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.info-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 5px solid #ff6b6b;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-height: 150px;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-card-content {
    flex: 1;
}

.info-card-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.contact-info-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.contact-info-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info-section .title {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-details a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .profile-header h2 {
        font-size: 2rem;
    }

    .profile-header .title {
        font-size: 1.1rem;
    }

    .contact-info-section {
        padding: 2rem;
    }

    .image-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .bio-content p.with-image-left,
    .bio-content p.with-image-right,
    .bio-content p.with-image-center {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .image-inline {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .info-cards-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .info-card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .info-card-content h3 {
        font-size: 1.3rem;
    }

    .info-card-content p {
        font-size: 1rem;
    }
}

