/* About CSS - Hakkımda Sayfası Stilleri */

/* About sayfası için özel stil */
.about-page {
    /* Arka plan artık body'den geliyor */
}

.page-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 300;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}

/* CV content styling */
.cv-content {
    text-align: left;
    color: #333;
}

.cv-content h2 {
    text-align: left;
    color: #667eea;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.cv-content h3 {
    text-align: left;
    color: #333;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    padding-left: 15px;
}

.cv-content h4 {
    text-align: left;
    color: #555;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cv-content .contact-info {
    text-align: left;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cv-content .contact-info p {
    margin: 8px 0;
    color: #333;
    font-weight: 500;
}

.cv-content .experience-item {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-content ul {
    padding-left: 20px;
}

.cv-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }

    .page-header p {
        font-size: 1.1em;
    }

    .cv-content h2 {
        font-size: 1.8em;
    }

    .cv-content h3 {
        font-size: 1.3em;
    }

    .cv-content .contact-info,
    .cv-content .experience-item {
        padding: 15px;
    }
}