/* Extracted from egitici-egitimi.html */
/* HERO */
        .page-hero-724 {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #f26419 0%, var(--bg-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-hero-724::after {
            content: '';
            position: absolute;
            bottom: -50px; left: 0;
            width: 100%; height: 100px;
            background: var(--bg-main);
            transform: skewY(-2deg);
        }
        .page-hero-724 h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; color: #fff; }
        .page-hero-724 p { font-size: 1.15rem; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 800px; margin: 0 auto; }
        
        .hero-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* PROMISE GRID */
        .promise-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .promise-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
        }
        .promise-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            background: white;
            border-color: #f26419;
        }
        .promise-card .icon-box {
            width: 60px; height: 60px;
            background: rgba(242, 100, 25, 0.1);
            color: #f26419;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }
        .promise-card:hover .icon-box {
            background: #f26419; color: white;
            transform: scale(1.1) rotate(5deg);
        }
        .promise-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--text-dark); }
        .promise-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

        /* TIMELINE GRID */
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        .timeline-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .timeline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: rgba(242, 100, 25, 0.2);
        }
        .timeline-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: #f26419;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .timeline-card:hover::before {
            opacity: 1;
        }
        .timeline-card-number {
            font-size: 5rem;
            font-weight: 900;
            color: rgba(242, 100, 25, 0.05);
            position: absolute;
            top: -0.5rem;
            right: 1rem;
            line-height: 1;
            z-index: 0;
            transition: color 0.3s ease;
        }
        .timeline-card:hover .timeline-card-number {
            color: rgba(242, 100, 25, 0.1);
        }
        .timeline-card-content {
            position: relative;
            z-index: 1;
        }
        .timeline-card-content h4 {
            color: #f26419;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .timeline-card-content p {
            color: var(--text-main);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* TRACKING GRID (For Gains/Kazanımlar) */
        .tracking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .tracking-card {
            background: white; border-radius: 16px; padding: 2rem 1.5rem;
            border: 1px solid var(--border-color); text-align: center;
            transition: all 0.3s ease;
        }
        .tracking-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #f26419; }
        .tracking-card .icon-box { margin: 0 auto 1.5rem; width: 50px; height: 50px; color: #f26419; display:flex; align-items:center; justify-content:center; background:rgba(242,100,25,0.05); border-radius:12px; transition:all 0.3s ease; }
        .tracking-card:hover .icon-box { background:#f26419; color:white; }
        .tracking-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--text-dark); }
        .tracking-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin: 0; }
        
        /* JOURNEY GRID (For Kimler İçin & Sahaya Aktarım) */
        .program-journey-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .program-journey-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            padding: 2rem 1.5rem;
            text-align: left;
        }
        .program-journey-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: #f26419;
        }
        .program-journey-card h3 { font-size: 1.1rem; color: #f26419; margin-bottom: 0.75rem; line-height: 1.4; display: flex; align-items: center; gap: 0.5rem; }
        .program-journey-card h3 svg { width: 24px; height: 24px; color: #f26419; }
        .program-journey-desc { font-size: 0.95rem; color: var(--text-main); margin-bottom: 0; line-height: 1.6; }

        @media (max-width: 1024px) {
            .promise-grid { grid-template-columns: repeat(2, 1fr); }
            .timeline-grid, .tracking-grid, .program-journey-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .promise-grid, .timeline-grid, .tracking-grid, .program-journey-grid { grid-template-columns: 1fr; }
        }
@media (max-width: 768px) {
    .page-hero { padding: 85px 0 50px; }
}

@media (max-width: 768px) {
    .page-hero-724 { padding: 85px 0 50px; }
}
