:root {
    /* Renk Paleti - Temiz & Premium */
    --bg-light: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffffff, #f8f9fa);
    /* Hafif kırık beyaz geçişi */
    --primary-gold: rgb(1, 155, 157);
    /* Artık Gold yok, Teal var */
    --primary-dark: rgb(0, 120, 122);
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.85);
    /* Daha opak beyaz */
    --glass-border: rgba(0, 0, 0, 0.05);
    /* İnce gri çizgi */

    /* Fontlar */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-light);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 9999;
    /* Increased z-index to stay above everything */
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 5px 30px;
    /* Further reduced vertical padding for even larger logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Daha hafif gölge */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    /* Increased from 100px */
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo a:hover .logo-img {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    /* Koyu metin */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: rgb(1, 155, 157);
    /* Harita sihirbazı tab rengi */
}

.nav-links a:hover::after {
    width: 100%;
    background: rgb(1, 155, 157);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 40px;
    /* Explicit size */
    height: 30px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Prevent squishing */
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    /* Koyu ikon */
    transition: 0.3s;
    display: block;
}

/* --- Advertisement Banners --- */
.ad-banner-horizontal {
    width: 100%;
    max-width: 1200px;
    /* Kept at 1200px to match main site width, or 1400px if requested */
    margin: 0 auto;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .ad-banner-horizontal {
        height: 100px;
        font-size: 0.8rem;
        margin: 10px auto;
        width: 95%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 80px !important;
        /* Slightly smaller for mobile safety */
    }

    .main-header {
        padding: 5px 10px !important;
    }

    .glass-container {
        padding: 5px 12px !important;
        width: 100%;
    }

    .nav-links {
        display: none !important;
        /* Force hide unless active */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 10001;
        gap: 15px;
    }

    .main-nav.active .nav-links {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        position: relative !important;
        z-index: 999999 !important;
        /* Ensure it's above AdSense or other overlays */
        width: 44px !important;
        height: 44px !important;
        justify-content: center;
        align-items: center;
        cursor: pointer !important;
        pointer-events: auto !important;
        background: rgba(1, 155, 157, 0.05);
        /* Subtle background to show it's interactive */
        border-radius: 8px;
    }

    /* Hamburger Animation to X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero-section {
    padding: 190px 40px 40px;
    /* Increased from 140px to clear larger logo header */
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(1, 155, 157, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.active-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #D4AF37, rgb(1, 155, 157));
}

.card-content h1,
.card-content h2 {
    font-family: 'Poppins', sans-serif;
    /* Kullanıcının isteği üzerine güncellendi */
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Global Form Fixes */
input,
select,
textarea {
    max-width: 100%;
    box-sizing: border-box;
}

/* Specific Fix for Time Input Overflow on Mobile */
input[type="time"] {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    /* iOS fix */

    /* Height Fix */
    height: 54px !important;
    line-height: 54px !important;
    /* Dikey Ortalama */
    padding: 0 16px !important;
    display: block !important;
}

/* Helper Classes */
.hero-btn {
    display: inline-block;
    padding: 14px 30px;
    background: rgb(1, 155, 157);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: rgb(0, 130, 132);
    box-shadow: 0 5px 15px rgba(1, 155, 157, 0.2);
}

.card-visual {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.wizard-icon {
    font-size: 5rem;
    animation: float 6s ease-in-out infinite;
}

.wizard-icon.faded {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Coming Soon Card Styles */
.coming-soon-card {
    background: #f8f9fa;
    /* Hafif gri arka plan */
    border: 1px dashed #d1d5db;
}

.coming-soon-card .card-content h2,
.coming-soon-card .card-content p {
    color: #9ca3af;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Divider */
.section-divider {
    max-width: 1200px;
    height: 1px;
    margin: 10px auto 20px;
    /* Üst boşluk azaltıldı */
    background-color: #e5e7eb;
    /* Sade gri */
    width: 100%;
}

/* Latest Articles Section */
.latest-articles-section {
    padding: 0 40px 40px;
    /* Alt boşluk azaltıldı */
    display: flex;
    justify-content: center;
}

.articles-container {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    /* Kullanıcı isteği üzerine Poppins yapıldı */
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-gold);
}

/* Featured Article (Big Box) */
.featured-article {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.featured-image {
    flex: 1;
    min-height: 350px;
    background: #ffffff;
    /* Clean white background */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image img {
    max-width: 98%;
    max-height: 98%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.article-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #555;
    transition: transform 0.5s ease;
}

.featured-article:hover .article-placeholder-img {
    transform: scale(1.05);
}

.featured-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-gold);
}

/* Sub Articles Grid */
.sub-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sub-article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sub-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.sub-article-image {
    height: 200px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-article-image img {
    max-width: 98%;
    max-height: 98%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.sub-article-image .article-placeholder-img {
    font-size: 3rem;
}

.sub-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub-article-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sub-article-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.read-more-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.read-more-link:hover::after {
    width: 100%;
}

/* Responsive Articles */
@media (max-width: 900px) {
    .featured-article {
        flex-direction: column;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 30px;
    }

    .sub-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Date Styling */
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.article-date,
.sub-article-date {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.sub-article-date {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-gold);
}

/* Single Article Page */
.single-article-page {
    max-width: 800px;
    margin: 140px auto 100px;
    /* Header payı */
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-meta-top {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.article-meta-top .category {
    color: var(--primary-gold);
}

.article-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.article-lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 50px;
}

.main-hero {
    font-size: 8rem;
}

/* Content Styling */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.article-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-type: none;
}

.article-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.article-content ul li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 20px 30px;
    margin: 40px 0;
    background: #f9f9f9;
    font-style: italic;
    font-size: 1.25rem;
    color: #555;
    border-radius: 0 12px 12px 0;
}

/* Responsive images inside article content */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-gold);
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-buttons span {
    font-size: 0.9rem;
    color: #999;
}

.share-buttons button {
    border: 1px solid #ddd;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.share-buttons button:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .single-article-page {
        margin-top: 100px;
    }
}

/* Article Layout with Ads */
.layout-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1500px;
    /* Increased from 1300px */
    width: 100%;
    margin: 200px auto 100px;
    /* Increased from 140px */
    padding: 0 20px;
}

.layout-wrapper.no-ads {
    justify-content: center;
}

.layout-wrapper.no-ads .course-detail-page {
    max-width: 900px;
    margin: 0 auto;
}

.layout-wrapper .single-article-page {
    margin: 0;
    /* Reset margin */
    flex: 1;
    max-width: 1000px;
    /* Increased from 800px */
    /* Keep content readable but wider */
}

.ad-side {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-placeholder-vertical {
    width: 100%;
    height: 600px;
    /* Skyscraper height */
    background: #f8f9fa;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    position: sticky;
    top: 120px;
    /* Header'ın altında kalacak şekilde sticky */
}

/* Responsive Ads */
@media (max-width: 1100px) {
    .layout-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 120px;
    }

    .ad-side {
        width: 100%;
        max-width: 300px;
        /* Mobile ad size */
        flex-direction: row;
        justify-content: center;
    }

    .ad-placeholder-vertical {
        height: 300px;
        position: static;
    }

    .left-ad {
        order: 1;
    }

    .single-article-page {
        order: 2;
        width: 100%;
    }

    .right-ad {
        order: 3;
    }
}

/* Section Header (Title + View All Link) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
    /* Wrapper içindeyken margin'i sıfırla */
}

.view-all-link {
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Makaleler Sayfası Stilleri */
.page-container {
    max-width: 1200px;
    margin: 140px auto 100px;
    padding: 0 40px;
}

.page-header {
    margin-bottom: 60px;
}

.page-header.center-text {
    text-align: center;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.articles-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.article-card-standard {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card-standard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-image {
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    max-width: 98%;
    max-height: 98%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-date-sm {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.dots {
    display: flex;
    align-items: flex-end;
    padding-bottom: 5px;
    color: #999;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .articles-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .articles-grid-full {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Page Content Center (Between Ads) */
.page-content-center {
    flex: 1;
    width: 100%;
    /* Ensure it fills available space */
}

/* Adjust Grid for Ad Layout */
.layout-wrapper .articles-grid-full {
    grid-template-columns: repeat(2, 1fr);
    /* 3 yerine 2 sütun (reklamlar yer kapladığı için) */
    gap: 30px;
}

/* Responsive adjustment for Layout with Ads */
@media (max-width: 1300px) {
    .layout-wrapper .articles-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .layout-wrapper .articles-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Trainings Section */
.trainings-section {
    padding: 0 40px 100px;
    display: flex;
    justify-content: center;
}

.trainings-container {
    max-width: 1200px;
    width: 100%;
}

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.training-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.training-image {
    height: 200px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.training-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #555;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.level-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.level-badge.basic {
    background: #4caf50;
}

.level-badge.intermediate {
    background: #ff9800;
}

.level-badge.advanced {
    background: #f44336;
}

.training-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.training-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.training-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.training-features {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.training-features li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.training-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.training-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 155, 157, 0.2);
}

/* Responsive Trainings */
@media (max-width: 900px) {
    .trainings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trainings-grid {
        grid-template-columns: 1fr;
    }
}

/* Trainings Grid for Full Page */
.trainings-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default 2 columns inside layout content area */
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .trainings-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Course Detail Page Styles */
.course-detail-page {
    background: white;
    padding: 0;
    border-radius: 16px;
    /* Box-ish look inside wrapper */
}

.course-header {
    background: #f8f9fa;
    padding: 50px 60px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.course-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.display-inline {
    position: static;
    /* Kartlardaki absolute'u ezmek için */
    box-shadow: none;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--text-dark);
    color: white;
}

.status-badge.open {
    background: var(--primary-gold);
}

.course-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.course-meta-grid {
    display: flex;
    gap: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    font-size: 2rem;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-text strong {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
}

.meta-text span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Course Content */
.course-main-content {
    padding: 0 60px 40px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-gold);
}

/* Legacy curriculum styles removed to prevent conflicts */


/* Enroll Section */
.enroll-section {
    text-align: center;
    background: #f0fdfd;
    /* Çok açık teal tonu */
    padding: 40px;
    border-radius: 16px;
    border: 1px dashed var(--primary-gold);
}

.enroll-section h2::before {
    display: none;
}

/* Remove side line for centered header */

.price-box {
    margin-top: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.vat {
    font-size: 1rem;
    color: #999;
    font-weight: normal;
}

.payment-note {
    color: #666;
    margin-bottom: 30px;
}

.enroll-btn-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.enroll-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 155, 157, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .course-meta-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* Legacy mobile curriculum overrides removed */

}

/* Footer Styles */
.main-footer {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 0 30px;
    margin-top: auto;
    /* Push to bottom if flex column used (needs body setup) */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo-img {
    height: 80px;
    /* Increased from 60px */
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--primary-gold);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Enroll Buttons */
.enroll-actions {
    margin-top: 25px;
}

.enroll-label {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.enroll-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.enroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 200px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: 1px solid #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.email-btn {
    background: white;
    color: var(--text-dark);
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.email-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
}

.enroll-btn .icon {
    font-size: 1.2rem;
}

/* Footer WhatsApp Icon */
.icon-whatsapp-footer {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325D366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471.148-.67.445-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 5px;
    background-size: contain;
}

/* Footer WhatsApp Button Style */
.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white !important;
    /* Override default link color */
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 5px;
    font-size: 0.9rem;
}

.footer-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: white !important;
}

.footer-whatsapp-btn .icon-whatsapp-footer {
    filter: brightness(0) invert(1);
    /* Make black SVG white */
    margin-right: 0;
}

/* Top Back Link Style */
.back-link-top {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    align-self: flex-start;
    /* Flex container içinde sola yaslanması için */
    transition: color 0.3s;
}

.back-link-top:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Ensure Headers handle the new link properly */
.article-header,
.course-header {
    display: flex;
    flex-direction: column;
}

/* Consultancy Section */
.consultancy-section {
    padding: 0 40px 80px;
    display: flex;
    justify-content: center;
}

.consultancy-container {
    max-width: 1200px;
    width: 100%;
}

.consultancy-featured {
    width: 100%;
    margin-top: 20px;
}

.featured-consultancy-card {
    background: white;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 350px 1fr;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.featured-consultancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(1, 155, 157, 0.1);
}

.consultancy-visual-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

@media (max-width: 1000px) {
    .consultancy-visual-img {
        height: 350px;
    }
}

.featured-consultancy-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultancy-badge {
    background: rgba(1, 155, 157, 0.1);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.featured-consultancy-content h3 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.featured-consultancy-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.consultancy-meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.consultancy-meta-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.consultancy-actions {
    display: flex;
    gap: 20px;
}

.consultancy-btn-main {
    padding: 16px 35px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(1, 155, 157, 0.2);
}

.consultancy-btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(1, 155, 157, 0.3);
}

.consultancy-btn-secondary {
    padding: 16px 35px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid #eee;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.consultancy-btn-secondary:hover {
    background: #f8f8f8;
    border-color: #ddd;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .featured-consultancy-card {
        grid-template-columns: 1fr;
    }

    .consultancy-visual {
        height: 250px;
    }

    .featured-consultancy-content {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .featured-consultancy-content h3 {
        font-size: 1.8rem;
    }

    .consultancy-actions {
        flex-direction: column;
    }

    .consultancy-btn-main,
    .consultancy-btn-secondary {
        text-align: center;
    }
}

.consultancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.consultancy-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.consultancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(1, 155, 157, 0.2);
}

.consultancy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(1, 155, 157, 0.05);
    /* Very light teal */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.consultancy-card:hover .consultancy-icon {
    background: rgba(1, 155, 157, 0.1);
}

.consultancy-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.consultancy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    min-height: 48px;
    /* Biraz daha genişlettim tam hizalama için */
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultancy-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Butonu alta it */
}

.consultancy-link {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.consultancy-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

@media (max-width: 1024px) {
    .consultancy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .consultancy-grid {
        grid-template-columns: 1fr;
    }
}

/* Curriculum List Global Styles */
.curriculum-list {
    list-style: none;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    margin: 30px 0;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.curriculum-list li {
    padding: 14px 20px;
    background: #fdfdfd;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    /* Çok küçük bir boşluk, numaradan hemen sonra metin başlasın */
    transition: all 0.2s ease;
}

.curriculum-list li:hover {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(1, 155, 157, 0.08);
    transform: translateY(-2px);
}

.curriculum-list li .week-num {
    color: var(--primary-gold);
    font-weight: 700;
    white-space: nowrap;
    min-width: 25px;
    /* Sadece numara kadar yer kaplar */
    display: inline-block;
}

.curriculum-list li .week-title {
    line-height: 1.5;
    text-align: left;
    font-weight: 500;
}

/* Course Detail Specifics */
.course-detail-page h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.enroll-section {
    margin-top: 60px;
    padding: 40px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 20px;
}

.price-box {
    margin-top: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
}

.price .vat {
    font-size: 1rem;
    color: #999;
}

.enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    margin-top: 20px;
    transition: transform 0.2s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: rgb(1, 155, 157) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.enroll-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(1, 155, 157, 0.2);
    filter: brightness(1.1);
}

.email-btn:hover {
    background: rgb(1, 155, 157) !important;
}

/* System Features List */
.system-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.system-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #444;
}

.system-features li span {
    font-size: 1.4rem;
    width: 30px;
    display: flex;
    justify-content: center;
}

/* Curriculum Section Headers */
.curriculum-section-header {
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f9fa;
}

.curriculum-section-header h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.section-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

.curriculum-section-header:first-child {
    margin-top: 0;
}

/* Related Education Section */
.related-education-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-education-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.small-trainings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.small-course-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.small-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.small-card-header h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 10px 0;
}

.small-badge {
    font-size: 0.75rem;
    background: #f8f9fa;
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.small-card-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .small-trainings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .course-header {
        padding: 30px 25px;
    }

    .course-main-content {
        padding: 0 25px 40px;
    }

    .related-education-section {
        margin-top: 50px;
    }
}

/* Pagination Fix */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.dots {
    color: #999;
    font-weight: bold;
}

/* Pagination Fix - FORCED */
.pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 50px !important;
    flex-wrap: wrap !important;
}

.page-link {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    /* Yuvarlak zorlamasını iptal et */
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 20px !important;
    /* Yanlardan rahat boşluk */
    border-radius: 50px !important;
    /* Tam yuvarlak hap */
    background: white !important;
    border: 1px solid #ddd !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-gold) !important;
    color: white !important;
    border-color: var(--primary-gold) !important;
}

.dots {
    color: #999 !important;
    font-weight: bold !important;
    margin: 0 5px !important;
}

/* --- Mobile Adjustments --- */
/* --- Mobile Adjustments --- */
@media (max-width: 768px) {

    /* 1. TYPOGRAPHY UNIFICATION */
    /* Hero Titles & Section Titles -> All same size/weight */
    .hero-card .card-content h1,
    .hero-card .card-content h2,
    .section-title {
        font-family: 'Poppins', sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    /* Section Title Specifics */
    .section-title {
        padding-left: 15px !important;
        margin-bottom: 20px !important;
    }

    /* 2. SPACING ADJUSTMENTS */
    /* Hero Section Padding */
    .hero-section {
        padding: 120px 10px 40px !important;
    }

    .hero-card {
        padding: 20px 15px !important;
    }

    /* Content Sections Padding (Articles, Trainings, etc.) */
    .latest-articles-section,
    .trainings-section,
    .consultancy-section {
        padding: 0 15px 40px !important;
    }

    /* 3. FEATURED ARTICLE STYLING (Make it IDENTICAL to sub-articles) */
    .featured-article {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;

        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        /* This ensures image corners follow card radius */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;

        margin-bottom: 20px !important;
    }

    /* Standardize Image Container */
    .featured-image,
    .sub-article-image {
        height: 180px !important;
        /* Revert to 180px */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        background: transparent !important;
    }

    /* Standardize Image Content - COVER Style */
    .featured-image img,
    .featured-image .article-placeholder-img,
    .sub-article-image img,
    .sub-article-image .article-placeholder-img {
        height: 100% !important;
        width: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .featured-content {
        padding: 15px !important;
    }



    /* Featured Date Styling - Match Sub-Article */
    .featured-date {
        display: block !important;
        font-size: 0.9rem !important;
        color: var(--primary-dark) !important;
        /* veya #019b9d */
        margin-bottom: 5px !important;
        font-weight: 500 !important;
    }

    .featured-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    /* Training Page Hero Title Mobile Fix */
    .trainings-hero h1 {
        font-size: 1.5rem !important;
        /* Reduced from 3.5rem */
        line-height: 1.3 !important;
        padding: 0 10px !important;
    }

    .trainings-hero p {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }

    .featured-content p {
        font-size: 0.9rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 10px !important;
    }
}