/* --- Genel Ayarlar --- */
:root {
    --primary-color: #0d6efd;
    --secondary-bg: #f8f9fa;
    --text-color: #333;
    --heading-color: #1a1a1a;
    --white-color: #fff;
    --border-color: #dee2e6;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.site-header {
    background: var(--white-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}
.main-nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}
.cta-button {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}
.cta-button:hover { background-color: #0b5ed7; }
.cta-button.large { padding: 0.8rem 1.8rem; font-size: 1.1rem; }

/* --- Ana İçerik Bölümleri --- */
main section { padding: 60px 0; }
.content-section-colored { background-color: var(--secondary-bg); }
.hero-section { text-align: center; padding: 80px 0; }
h1 { font-size: 3rem; color: var(--heading-color); margin-bottom: 0.5rem; }
h2 { font-size: 2.2rem; color: var(--heading-color); text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.4rem; margin-top: 0; }
p.subtitle { max-width: 600px; margin: 0 auto 2rem auto; font-size: 1.2rem; color: #555; }

/* Servisler ve İletişim Grid Yapısı */
.services-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.service-card { padding: 2rem; background: var(--white-color); border: 1px solid var(--border-color); border-radius: 8px; }
.contact-details p { font-size: 1.1rem; }
.contact-details a { color: var(--primary-color); text-decoration: none; }

/* İletişim Formu */
.contact-form form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.contact-form button:hover { background-color: #0b5ed7; }

/* --- Footer --- */
.site-footer {
    background: var(--heading-color);
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 40px;
}

/* --- Responsive Tasarım --- */
@media (max-width: 768px) {
    /* Yazı boyutlarını mobil için ayarla */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    /* Üst menüdeki "About", "Services" gibi navigasyon linklerini gizle */
    .main-nav {
        display: none;
    }

    /* DÜZELTME: Header'daki .cta-button'ın (Get Started) GÖRÜNÜR olmasını garantile */
    .site-header .cta-button {
        display: inline-block; /* 'none' olan bir kural varsa onu geçersiz kılar */
    }

    /* DÜZELTME: Ana bölümdeki .cta-button'ın (Explore Courses) GÖRÜNÜR olmasını garantile */
    .hero-section .cta-button {
        display: inline-block;
    }

    /* Diğer grid yapılarını tek sütuna düşür */
    .services-grid, .contact-grid { 
        grid-template-columns: 1fr; 
    }
	.site-header .cta-button {
        padding: 6px 12px;  /* İç boşluğu azalt */
        font-size: 0.8rem;    /* Yazı boyutunu küçült */
    }
}

/* ======================================= */
/* === YENİ LOGO STİLLERİ === */
/* ======================================= */

/* Logonun tamamını kapsayan link etiketi */
.logo a.logo-container {
    display: flex; /* Daire ve metni yan yana getirir */
    align-items: center; /* Dikey olarak ortalar */
    text-decoration: none; /* Linkin altındaki çizgiyi kaldırır */
}

/* Mavi daire ("7") */
.logo .logo-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color); /* Ana mavi rengi kullanır */
    color: var(--white-color); /* Beyaz yazı rengi */
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%; /* Tam bir daire yapar */
    margin-right: 8px; /* Daire ile metin arasına boşluk bırakır */
    line-height: 1; /* Satır yüksekliğini sıfırlar, tam ortalama için */
}

/* Logo metni ("myIB") */
.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color); /* Başlıklarla aynı renk */
}