/* Kurumsal Sayfa - Basit ve Sade Stiller */

/* Genel Ayarlar */
.main-content {
    padding-top: 140px;
    background-color: #fff;
}

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

/* Hero Section - Basit */
.hero-section-simple {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.hero-section-simple h1 {
    font-size: 42px;
    color: #002290;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section-simple p {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

/* Hakkımızda Section */
.about-simple {
    padding: 80px 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.image-content {
    flex: 0 0 400px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Misyon Vizyon */
.mission-vision-simple {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mv-box h3 {
    font-size: 24px;
    color: #002290;
    margin-bottom: 20px;
    font-weight: 600;
}

.mv-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Değerlerimiz */
.values-simple {
    padding: 80px 0;
}

.values-simple h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-item i {
    font-size: 20px;
    color: #002290;
}

.value-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* İstatistikler */
.stats-simple {
    background-color: #002290;
    padding: 80px 0;
    color: #fff;
}

.stats-simple h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
}

/* CTA Section */
.cta-simple {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-simple h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-simple p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-simple {
    display: inline-block;
    padding: 15px 40px;
    background-color: #002290;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-simple:hover {
    background-color: #0053a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 34, 144, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .main-content {
        padding-top: 70px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .image-content {
        flex: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section-simple {
        padding: 40px 0;
    }
    
    .hero-section-simple h1 {
        font-size: 32px;
    }
    
    .hero-section-simple p {
        font-size: 16px;
    }
    
    .about-simple,
    .mission-vision-simple,
    .values-simple,
    .stats-simple,
    .cta-simple {
        padding: 60px 0;
    }
    
    .text-content h2,
    .values-simple h2,
    .stats-simple h2,
    .cta-simple h2 {
        font-size: 28px;
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding-top: 60px;
    }
    
    .hero-section-simple h1 {
        font-size: 28px;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-box {
        padding: 30px 20px;
    }
    
    .btn-simple {
        padding: 12px 30px;
        font-size: 15px;
    }
}
