 body {
            font-family: 'Poppins', sans-serif;
            background: #f7f7f7;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .site-container {
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        .top-header {
            background: #ffffff;
            border-bottom: 1px solid #e9e9e9;
        }

        .top-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 88px;
            gap: 20px;
        }

        .brand-area {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .brand-logo {
            width: 56px;
            height: 56px;
            border: 1px solid #d8b787;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d8b787;
            font-size: 22px;
            background: #fff;
        }

        .brand-text {
            line-height: 1.1;
        }

        .brand-title {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 6px;
            color: #111;
            margin-bottom: 6px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            padding-right: 70px;
        }

        .brand-title::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            width: 58px;
            height: 1px;
            background: #d8b787;
            transform: translateY(-50%);
        }

        .brand-subtitle {
            font-size: 9px;
            letter-spacing: 3px;
            color: #666;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-left: auto;
            margin-right: 30px;
        }

        .main-nav a {
            text-decoration: none;
            color: #222222;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: 0.2s ease;
        }

        .main-nav a:hover {
            color: #000;
        }

        .header-btn {
            background: #000;
            color: #fff;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s ease;
        }

        .header-btn:hover {
            background: #1c1c1c;
            color: #fff;
        }

        @media (max-width: 1200px) {
            .site-container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        @media (max-width: 991.98px) {
            .top-header .site-container {
                flex-wrap: wrap;
                justify-content: center;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .main-nav {
                margin: 0;
                flex-wrap: wrap;
                justify-content: center;
                gap: 18px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-title {
                font-size: 12px;
                letter-spacing: 4px;
                padding-right: 45px;
            }

            .brand-title::after {
                width: 35px;
            }

            .brand-subtitle {
                font-size: 8px;
                letter-spacing: 2px;
            }

            .main-nav a {
                font-size: 14px;
            }

            .header-btn {
                padding: 10px 22px;
                font-size: 14px;
            }
        }

    .hero-slider {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #f6f3fb url("/assets/front/images/slider-arkaplan.png") no-repeat right center;
    background-size: cover;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(246, 243, 251, 0.98) 0%,
        rgba(246, 243, 251, 0.94) 28%,
        rgba(246, 243, 251, 0.78) 48%,
        rgba(246, 243, 251, 0.20) 68%,
        rgba(246, 243, 251, 0.00) 100%
    );
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-slider-left {
    width: 48%;
    max-width: 520px;
    padding: 40px 0;
}

.hero-slider-left h1 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #2455b5;
}

.hero-slider-left p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
    font-weight: 400;
}

.hero-slider-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .25s ease;
}

.hero-btn span {
    font-size: 18px;
    line-height: 1;
}

.purple-btn {
    background: #6a22c9;
    color: #fff;
}

.purple-btn:hover {
    background: #591ab0;
    color: #fff;
}

.green-btn {
    background: #29c45a;
    color: #fff;
}

.green-btn:hover {
    background: #20af4d;
    color: #fff;
}

.hero-slider-right {
    width: 46%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 430px;
}

.hero-slider-right img {
    max-width: 440px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-slider {
        min-height: auto;
        padding: 60px 0 30px;
        background-position: center right;
    }

    .hero-slider::before {
        background: linear-gradient(
            180deg,
            rgba(246, 243, 251, 0.96) 0%,
            rgba(246, 243, 251, 0.90) 35%,
            rgba(246, 243, 251, 0.55) 70%,
            rgba(246, 243, 251, 0.15) 100%
        );
    }

    .hero-slider-content {
        min-height: auto;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-slider-left,
    .hero-slider-right {
        width: 100%;
        max-width: 100%;
    }

    .hero-slider-buttons {
        justify-content: center;
    }

    .hero-slider-right {
        min-height: auto;
        justify-content: center;
    }

    .hero-slider-right img {
        max-width: 360px;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .hero-slider-left h1 {
        font-size: 28px;
    }

    .hero-slider-left p {
        font-size: 16px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-slider-right img {
        max-width: 280px;
    }
}
        
        
.featured-courses-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.featured-courses-head {
    text-align: center;
    margin-bottom: 42px;
}

.featured-courses-head h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #2455b5;
    margin: 0 0 12px;
}

.featured-courses-head p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
}

.featured-course-card {
    background: #fffdfd;
    border: 1px solid #f0eded;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 120px;
}

.featured-course-image {
    width: 220px;
    min-width: 180px;
    overflow: hidden;
}

.featured-course-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.featured-course-content {
    flex: 1;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
}

.featured-course-content h3 {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #2455b5;
    margin: 0 0 14px;
}

.featured-course-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #444;
    margin: 0 0 16px;
}

.featured-course-btn {
    margin-top: auto;
    margin-left: auto;
    height: 34px;
    padding: 0 14px;
    background: #6a22c9;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.25s ease;
}

.featured-course-btn span {
    font-size: 16px;
    line-height: 1;
}

.featured-course-btn:hover {
    background: #5818ad;
    color: #fff;
}

.featured-courses-bottom {
    text-align: center;
    margin-top: 26px;
}

.featured-all-btn {
    min-width: 154px;
    height: 40px;
    padding: 0 20px;
    background: #28c15b;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.featured-all-btn:hover {
    background: #1fad4f;
    color: #fff;
}

@media (max-width: 991px) {
    .featured-courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .featured-courses-section {
        padding: 55px 0 65px;
    }

    .featured-courses-head h2 {
        font-size: 28px;
    }

    .featured-courses-head p {
        font-size: 14px;
    }

    .featured-course-card {
        flex-direction: column;
    }

    .featured-course-image {
        width: 100%;
        min-width: 100%;
        height: 210px;
    }

    .featured-course-content {
        padding: 16px;
    }

    .featured-course-btn {
        margin-left: 0;
    }
}


.about-section {
    padding: 80px 0;
    linear-gradient(180deg, #faf6f6 0%, #ffffff 100%);
    margin-top: -35px;
}

.about-title {
    font-size: 30px;
    color: #2d5db3;
    margin-bottom: 40px;
}

.about-title strong {
    font-weight: 700;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    width: 420px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }
}

.faq-banner-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-banner-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: stretch;
}

.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-accordion .accordion-item {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #f7f7f7;
}

.custom-accordion .accordion-button {
    background: #f7f7f7;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 22px;
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #f7f7f7;
    color: #111;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .accordion-button::before {
    content: "›";
    font-size: 22px;
    color: #222;
    margin-right: 12px;
    line-height: 1;
    transform: rotate(0deg);
    transition: 0.25s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
    transform: rotate(90deg);
}

.custom-accordion .accordion-body {
    background: #ffffff;
    padding: 18px 22px 22px 22px;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    border-top: 1px solid #efefef;
}

.banner-area {
    height: 100%;
}

.side-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg, #2e3192 0%, #4a36c9 45%, #8f52ff 100%);
    padding: 38px 34px;
}

.side-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.banner-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

.banner-content h3 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.banner-content h3 span {
    color: #f29cff;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0 0 24px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #392fb7;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 10px;
    transition: 0.25s ease;
}

.side-banner:hover .banner-btn {
    transform: translateY(-2px);
}

.banner-image {
    position: absolute;
    right: -30px;
    bottom: -10px;
    width: 290px;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transform: rotate(-12deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

@media (max-width: 991px) {
    .faq-banner-wrap {
        grid-template-columns: 1fr;
    }

    .side-banner {
        min-height: 460px;
    }

    .banner-content h3 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .custom-accordion .accordion-button {
        font-size: 15px;
        padding: 16px 18px;
    }

    .custom-accordion .accordion-body {
        font-size: 14px;
        padding: 14px 18px 18px 18px;
    }

    .side-banner {
        padding: 26px 22px;
        min-height: 420px;
    }

    .banner-content h3 {
        font-size: 28px;
    }

    .banner-image {
        width: 220px;
        right: -20px;
        bottom: -10px;
    }
}

.why-section {
    padding: 70px 0 30px;
    background: #ffffff;
    margin-top: -50px;
}

.why-section h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f4fa8;
    margin-bottom: 24px;
}

.why-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #2e2e2e;
    margin-bottom: 26px;
    max-width: 1080px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-block h4 {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.why-block p {
    font-size: 14px;
    line-height: 1.45;
    color: #2f2f2f;
    margin: 0;
    max-width: 1080px;
}

@media (max-width: 768px) {
    .why-section h2 {
        font-size: 25px;
    }

    .why-desc,
    .why-block p {
        font-size: 15px;
        line-height: 1.6;
    }

    .why-block h4 {
        font-size: 17px;
    }
}

.footer {
    background: #f8f7f9;
    padding: 50px 0 20px;
    border-top: 1px solid #ececec;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-menu {
    display: flex;
    gap: 24px;
}

.footer-menu a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.footer-menu a:hover {
    color: #2d5db3;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 15px;
    transition: 0.25s;
}

.footer-social a:hover {
    background: #2d5db3;
    color: #fff;
    border-color: #2d5db3;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.about-page-section {
    background: #ffffff;
    padding: 55px 0 70px;
}

.about-full-width {
    background: rgba(245, 247, 249, 0.5);
    padding: 40px 0 60px;
    width: 100%;
}

.about-page-top {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px;
}

.about-page-top h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #2354b5;
    margin-bottom: 12px;
}

.about-page-top p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.about-page-image {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.about-page-image img {
    width: 100%;
    max-width: 560px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.about-page-image img {
    width: 100%;
    max-width: 445px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.about-page-content {
    max-width: 1040px;
    margin: 0 auto;
}

.about-page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 22px;
    text-align: justify;
}

.about-page-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 40px 0 55px;
    }

    .about-page-top h1 {
        font-size: 27px;
    }

    .about-page-top p,
    .about-page-content p {
        font-size: 14px;
    }

    .about-page-image {
        margin-bottom: 34px;
    }

    .about-page-image img {
        max-width: 100%;
        border-radius: 14px;
    }
}

.egitimler-page {
    padding: 0 0 80px;
    background: #ffffff;
}

.egitimler-page-head {
    text-align: center;
    padding: 34px 0 22px;
    margin-bottom: 38px;
    background: #f7f7f7;
}

.egitimler-page-head h1 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #2455b5;
}

.egitimler-page-head p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.egitimler-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
}

.egitim-card {
    display: flex;
    align-items: stretch;
    background: #fffdfd;
    border: 1px solid #f2eded;
    border-radius: 12px;
    overflow: hidden;
    min-height: 148px;
}

.egitim-card-image {
    width: 205px;
    min-width: 205px;
    height: auto;
}

.egitim-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.egitim-card-content {
    flex: 1;
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
}

.egitim-card-content h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #2455b5;
}

.egitim-card-content p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.5;
    color: #444;
}

.egitim-card-btn {
    margin-top: auto;
    margin-left: auto;
    height: 28px;
    padding: 0 12px;
    background: #6820c7;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.25s ease;
}

.egitim-card-btn span {
    font-size: 14px;
    line-height: 1;
}

.egitim-card-btn:hover {
    background: #5718ab;
    color: #fff;
}

@media (max-width: 991px) {
    .egitimler-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .egitimler-page {
        padding-bottom: 60px;
    }

    .egitimler-page-head {
        padding: 28px 14px 20px;
        margin-bottom: 28px;
    }

    .egitimler-page-head h1 {
        font-size: 28px;
    }

    .egitimler-page-head p {
        font-size: 13px;
    }

    .egitim-card {
        flex-direction: column;
    }

    .egitim-card-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .egitim-card-content {
        padding: 14px;
    }

    .egitim-card-btn {
        margin-left: 0;
    }
}

.egitim-detay-page {
    background: #ffffff;
}

/* ÜST ALAN */
.egitim-detay-header {
    width: 100%;
    background: rgba(245, 247, 249, 0.5);
    padding: 24px 0 26px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #efefef;
}

.egitim-detay-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2455b5;
    text-decoration: none;
    margin-bottom: 10px;
}

.egitim-detay-header h1 {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 500;
    color: #2f2f2f;
}

/* ORTA ALAN */
.egitim-detay-body {
    width: 100%;
    background: #ffffff;
    padding: 34px 0 48px;
    border-bottom: 1px solid #ededed;
}

.egitim-detay-text {
    max-width: 1320px;
}

.egitim-detay-text p {
    margin: 0 0 34px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: 0;
    text-align: justify;
}

.egitim-detay-text p:last-child {
    margin-bottom: 0;
}

/* ALT CTA ALANI */
.egitim-detay-cta {
    width: 100%;
    background: #fbfbfb;
    padding: 56px 0 58px;
}

.egitim-detay-cta-box {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.egitim-detay-cta-box h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: #242424;
}

.egitim-detay-cta-box p {
    margin: 0 auto 22px;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.45;
    color: #3b3b3b;
}

.egitim-detay-cta-btn {
    height: 40px;
    padding: 0 18px;
    border-radius: 6px;
    background: #31c451;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}

.egitim-detay-cta-btn span {
    font-size: 17px;
    line-height: 1;
}

.egitim-detay-cta-btn:hover {
    background: #28b347;
    color: #ffffff;
}

/* MOBIL */
@media (max-width: 768px) {
    .egitim-detay-header {
        padding: 20px 0 22px;
    }

    .egitim-detay-header h1 {
        font-size: 17px;
    }

    .egitim-detay-body {
        padding: 28px 0 36px;
    }

    .egitim-detay-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .egitim-detay-cta {
        padding: 42px 0 44px;
    }

    .egitim-detay-cta-box h2 {
        font-size: 24px;
    }

    .egitim-detay-cta-box p {
        font-size: 15px;
    }
}

.iletisim-page {
    background: #ffffff;
    padding-bottom: 70px;
}

.iletisim-head {
    background: #f7f7f8;
    text-align: center;
    padding: 34px 0 24px;
    margin-bottom: 58px;
}

.iletisim-head h1 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #2455b5;
}

.iletisim-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
}

.iletisim-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.iletisim-info-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    min-height: 112px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.iletisim-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #2fc356;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.iletisim-info-text h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #2455b5;
}

.iletisim-info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #3b3b3b;
}

.iletisim-info-text span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
    color: #6e6e6e;
}

.iletisim-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.iletisim-form-box {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 22px;
    padding: 28px 24px 22px;
}

.iletisim-form-box h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #2455b5;
}

.iletisim-form-box > p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
    max-width: 420px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #2f2f2f;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    outline: none;
    box-shadow: none;
}

.form-group input {
    height: 44px;
}

.form-group textarea {
    height: 124px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #cfcfcf;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-submit button {
    height: 34px;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    background: #2fc356;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.form-submit button span {
    font-size: 16px;
    line-height: 1;
}

.iletisim-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iletisim-image-area img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .iletisim-cards {
        grid-template-columns: 1fr;
    }

    .iletisim-main {
        flex-direction: column;
        align-items: stretch;
    }

    .iletisim-form-box {
        max-width: 100%;
    }

    .iletisim-image-area img {
        max-width: 320px;
    }
}

@media (max-width: 575px) {
    .iletisim-page {
        padding-bottom: 55px;
    }

    .iletisim-head {
        padding: 28px 0 20px;
        margin-bottom: 34px;
    }

    .iletisim-head h1 {
        font-size: 28px;
    }

    .iletisim-head p {
        font-size: 14px;
    }

    .iletisim-info-card {
        padding: 18px;
    }

    .iletisim-form-box {
        border-radius: 16px;
        padding: 22px 16px 18px;
    }

    .iletisim-form-box h2 {
        font-size: 22px;
    }
}

/* =========================================================
   MOBIL FIX PACK
   bunu dosyanın EN ALTINA ekle
   ========================================================= */

/* Tablet */
@media (max-width: 991px) {
    .site-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* Header */
    .top-header .site-container {
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: column;
        align-items: center;
    }

    .brand-area {
        justify-content: center;
        width: 100%;
    }

    .main-nav {
        width: 100%;
        margin: 6px 0 0;
        justify-content: center;
        gap: 16px;
    }

    .header-btn {
        margin-top: 6px;
    }

    /* Hero */
    .hero-slider {
        min-height: auto;
        padding: 56px 0 28px;
        background-position: center center;
        background-size: cover;
    }

    .hero-slider-content {
        min-height: auto;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-slider-left,
    .hero-slider-right {
        width: 100%;
        max-width: 100%;
    }

    .hero-slider-left {
        padding: 0;
    }

    .hero-slider-left h1 {
        font-size: 32px;
    }

    .hero-slider-left p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-slider-buttons {
        justify-content: center;
    }

    .hero-slider-right {
        margin-top: 0 !important;
        min-height: auto;
        justify-content: center;
        align-items: center;
    }

    .hero-slider-right img {
        max-width: 380px;
        margin: 0 auto;
    }

    /* Featured courses */
    .featured-courses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .featured-course-card {
        min-height: auto;
    }

    /* About */
    .about-section {
        padding: 56px 0;
        margin-top: 0;
    }

    .about-content {
        flex-direction: column;
        gap: 24px;
    }

    .about-image {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .about-title {
        margin-bottom: 26px;
        font-size: 28px;
    }

    /* FAQ */
    .faq-banner-section {
        padding: 56px 0;
    }

    .faq-banner-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .side-banner {
        min-height: 430px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-content h3 {
        font-size: 32px;
    }

    /* Why */
    .why-section {
        margin-top: 0;
        padding: 56px 0 24px;
    }

    /* Footer */
    .footer {
        padding: 42px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 18px;
    }

    .footer-social {
        justify-content: center;
    }

    /* About page */
    .about-page-section {
        padding: 42px 0 56px;
    }

    .about-full-width {
        padding: 34px 0 42px;
    }

    .about-page-top {
        margin-bottom: 22px;
    }

    .about-page-top h1 {
        font-size: 28px;
    }

    .about-page-image img {
        max-width: 420px;
    }

    .about-page-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* Eğitimler page */
    .egitimler-page {
        padding-bottom: 56px;
    }

    .egitimler-page-head {
        margin-bottom: 28px;
    }

    .egitimler-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .egitim-card {
        min-height: auto;
    }

    /* Eğitim detay */
    .egitim-detay-header {
        padding: 20px 0 22px;
    }

    .egitim-detay-body {
        padding: 28px 0 34px;
    }

    .egitim-detay-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .egitim-detay-cta {
        padding: 42px 0 46px;
    }

    /* İletişim */
    .iletisim-head {
        margin-bottom: 36px;
    }

    .iletisim-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .iletisim-main {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .iletisim-form-box {
        max-width: 100%;
    }

    .iletisim-image-area img {
        max-width: 320px;
    }
}

/* Mobil */
@media (max-width: 575.98px) {
    body {
        overflow-x: hidden;
    }

    .site-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
}

    /* Header */
    .top-header .site-container {
        gap: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .brand-area {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .brand-title {
        font-size: 11px;
        letter-spacing: 3px;
        padding-right: 0;
    }

    .brand-title::after {
        display: none;
    }

    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .main-nav {
        gap: 10px 14px;
    }

    .main-nav a {
        font-size: 13px;
        gap: 5px;
    }

    .header-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 18px;
        font-size: 14px;
    }

    /* Hero */
    .hero-slider {
        padding: 42px 0 18px;
    }

    .hero-slider-left h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-slider-left p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .hero-slider-buttons {
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        height: 46px;
        font-size: 14px;
    }

    .hero-slider-right img {
        max-width: 260px;
    }

    /* Featured courses */
    .featured-courses-section {
        padding: 46px 0 54px;
    }

    .featured-courses-head {
        margin-bottom: 26px;
    }

    .featured-courses-head h2 {
        font-size: 28px;
    }

    .featured-courses-head p {
        font-size: 14px;
        line-height: 1.6;
    }

    .featured-course-card {
        flex-direction: column;
        border-radius: 12px;
    }

    .featured-course-image {
        width: 100%;
        min-width: 100%;
        height: 190px;
    }

    .featured-course-content {
        padding: 14px;
    }

    .featured-course-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .featured-course-content p {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .featured-course-btn {
        width: 100%;
        height: 38px;
        justify-content: center;
        margin-left: 0;
    }

    .featured-all-btn {
        width: 100%;
        min-width: unset;
    }

    /* About */
    .about-section {
        padding: 46px 0;
    }

    .about-title {
        font-size: 26px;
        margin-bottom: 18px;
        text-align: center;
    }

    .about-image img {
        border-radius: 12px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    /* FAQ */
    .faq-banner-section {
        padding: 46px 0;
    }

    .custom-accordion {
        gap: 10px;
    }

    .custom-accordion .accordion-button {
        font-size: 14px;
        padding: 15px 16px;
    }

    .custom-accordion .accordion-body {
        font-size: 13px;
        line-height: 1.7;
        padding: 14px 16px 16px;
    }

    .side-banner {
        padding: 22px 18px;
        min-height: 360px;
    }

    .banner-badge {
        font-size: 12px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .banner-content h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .banner-btn {
        width: 100%;
        min-height: 44px;
    }

    .banner-image {
        width: 180px;
        right: -10px;
        bottom: -6px;
    }

    .banner-image img {
        border-radius: 12px;
    }

    /* Why */
    .why-section {
        padding: 46px 0 18px;
    }

    .why-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .why-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .why-list {
        gap: 18px;
    }

    .why-block h4 {
        font-size: 15px;
    }

    .why-block p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Footer */
    .footer {
        padding: 36px 0 18px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }

    .footer-menu a {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 12px;
        padding-top: 12px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 12px;
    }

    /* About page */
    .about-page-section {
        padding: 34px 0 48px;
    }

    .about-full-width {
        padding: 28px 0 34px;
    }

    .about-page-top h1 {
        font-size: 28px;
    }

    .about-page-top p {
        font-size: 14px;
    }

    .about-page-image {
        margin-bottom: 20px;
    }

    .about-page-image img {
        max-width: 100%;
        border-radius: 14px;
    }

    .about-page-content p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    /* Eğitimler page */
    .egitimler-page-head {
        padding: 26px 0 18px;
        margin-bottom: 24px;
    }

    .egitimler-page-head h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .egitimler-page-head p {
        font-size: 13px;
    }

    .egitim-card {
        flex-direction: column;
        border-radius: 12px;
    }

    .egitim-card-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .egitim-card-content {
        padding: 14px;
    }

    .egitim-card-content h3 {
        font-size: 16px;
    }

    .egitim-card-content p {
        font-size: 13px;
    }

    .egitim-card-btn {
        width: 100%;
        height: 36px;
        justify-content: center;
        margin-left: 0;
    }

    /* Eğitim detay */
    .egitim-detay-header {
        padding: 18px 0 20px;
    }

    .egitim-detay-back {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .egitim-detay-header h1 {
        font-size: 17px;
        line-height: 1.5;
    }

    .egitim-detay-body {
        padding: 24px 0 28px;
    }

    .egitim-detay-text p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 20px;
        text-align: left;
    }

    .egitim-detay-cta {
        padding: 34px 0 38px;
    }

    .egitim-detay-cta-box h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .egitim-detay-cta-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .egitim-detay-cta-btn {
        width: 100%;
        height: 44px;
    }

    /* İletişim */
    .iletisim-page {
        padding-bottom: 48px;
    }

    .iletisim-head {
        padding: 26px 0 18px;
        margin-bottom: 28px;
    }

    .iletisim-head h1 {
        font-size: 28px;
    }

    .iletisim-head p {
        font-size: 14px;
        line-height: 1.6;
    }

    .iletisim-info-card {
        padding: 16px;
        gap: 14px;
        min-height: auto;
    }

    .iletisim-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .iletisim-info-text h3 {
        font-size: 15px;
    }

    .iletisim-info-text p {
        font-size: 14px;
    }

    .iletisim-form-box {
        border-radius: 16px;
        padding: 20px 16px 18px;
    }

    .iletisim-form-box h2 {
        font-size: 24px;
    }

    .iletisim-form-box > p {
        font-size: 13px;
        max-width: 100%;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 11px 12px;
    }

    .form-group textarea {
        height: 110px;
    }

    .form-submit {
        justify-content: stretch;
    }

    .form-submit button {
        width: 100%;
        height: 40px;
        justify-content: center;
        font-size: 14px;
    }

    .iletisim-image-area img {
        max-width: 240px;
    }
}