@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #0c0407;
    background-color: #fefeff;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.main-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .main-header .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 1024px) {
    .main-header .navbar {
        /* Mobil/Tablet menü geçişi burada yapılmalı (Örn: Hamburger simgesi) */
        flex-flow: column;
        gap: 13px;
    }
}

.main-header .navbar .menu-icon-mobil {
    position: absolute;
    left: 20px;
    font-size: 22px;
    top: 23px;
    display: none;
}

@media (max-width: 1024px) {
    .main-header .navbar .menu-icon-mobil {
        /* Mobil/Tablet menü geçişi burada yapılmalı (Örn: Hamburger simgesi) */
        display: block;
    }
}

.main-header .navbar .is-open {
    display: flex !important;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c0407;
}

    .logo .logo-img {
        /* Eğer kendi PermiHire logonuzu kullanıyorsanız */
        width: 150px;
    }

    .logo .logo-icon {
        /* Eğer Jobhub'ın ikonunu simüle ediyorsanız */
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1; /* Ortadaki boşluğu doldurur */
    justify-content: flex-start;
    margin-left: 40px;
}

@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        flex-flow: column;
        top: 137px;
        background: #fff;
        width: 100%;
        left: 0;
        margin: 0;
        padding: 20px 0;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        display: none; /* Başlangıçta gizli */
    }
}

.nav-links .nav-item {
    line-height: 30px;
}

    .nav-links .nav-item .nav-link {
        color: #0c0407;
        font-size: 1rem;
        font-weight: 500;
        padding: 10px 0;
        transition: color 0.2s;
    }

        .nav-links .nav-item .nav-link:hover {
            color: #e42527;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* İki buton arasındaki boşluk */
}

    .header-actions .login-btn {
        background-color: #9c7cf9;
        line-height: 25px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.75px;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        padding: 10px 30px;
        border-radius: 8px;
        font-weight: 600;
    }

        .header-actions .login-btn:hover {
            background-color: rgb(119.1459854015, 75.2335766423, 246.7664233577);
        }

    .header-actions .demo-btn {
        background-color: transparent;
        line-height: 25px;
        color: #0c0407;
        font-weight: 600;
        letter-spacing: 0.75px;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        /* Arkaplan şeffaf */
        padding: 10px 0; /* Buton stilini kaldırıp metin linki yap */
        font-weight: 600;
    }

        .header-actions .demo-btn:hover {
            color: #e42527;
        }

#home-one .home-one-content {
    padding: 80px 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

    #home-one .home-one-content h1 {
        text-align: center;
        font-size: 4.7rem;
        line-height: 80px;
    }

@media (max-width: 768px) {
    #home-one .home-one-content h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
}

#home-one .home-one-content p {
    font-size: 14px;
    margin: 20px 0 40px;
    max-width: 600px;
    text-align: center;
    line-height: 180%;
    font-weight: 600;
    width: 100%;
}

#home-one .home-one-content .home-one-btns {
    display: flex;
    gap: 50px;
}

@media (max-width: 480px) {
    #home-one .home-one-content .home-one-btns {
        flex-direction: column;
        gap: 20px;
    }
}

#home-one .home-one-content .home-one-btns .demo-btn {
    background-color: #e42527;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.75px;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    #home-one .home-one-content .home-one-btns .demo-btn:hover {
        background-color: rgb(190.4163265306, 23.5836734694, 25.3306122449);
    }

#home-one .home-one-content .home-one-btns .demo-btn-border {
    background-color: #fff;
    line-height: 25px;
    color: #0c0407;
    font-weight: 600;
    letter-spacing: 0.75px;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e42527;
}

    #home-one .home-one-content .home-one-btns .demo-btn-border:hover {
        border-color: rgb(190.4163265306, 23.5836734694, 25.3306122449);
    }

.blog-section {
    padding: 60px 0;
}

    .blog-section .blog-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .blog-section .blog-header .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0c0407;
            margin: 0;
        }

        .blog-section .blog-header .view-more-btn {
            padding: 0.5rem 1rem;
            border: 1px solid #f0f0f0;
            border-radius: 4px;
            color: #0c0407;
            transition: all 0.2s;
            font-size: 14px;
        }

            .blog-section .blog-header .view-more-btn:hover {
                border-color: #e42527;
                color: #e42527;
            }

    .blog-section .blog-subtitle {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 30px;
    }

.blog-slider-container {
    overflow: hidden;
    width: 100%;
}

.blog-cards-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    padding-bottom: 10px;
}

    .blog-cards-wrapper .blog-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 10px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
        flex: 0 0 calc(33.3333% - 20px * 2 / 3);
        margin-right: 20px;
        display: flex;
        flex-direction: column;
    }

@media (max-width: 992px) {
    .blog-cards-wrapper .blog-card {
        flex: 0 0 calc(50% - 20px / 2);
    }
    .hero-image-placeholder {
        height: 250px !important;
    }
}

@media (max-width: 576px) {
    .blog-cards-wrapper .blog-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
}

.blog-cards-wrapper .blog-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-cards-wrapper .blog-card .card-image-box {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

    .blog-cards-wrapper .blog-card .card-image-box .card-image {
        width: 100%;
        height: auto;
        display: block;
    }

.blog-cards-wrapper .blog-card .card-content {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-cards-wrapper .blog-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
}

    .blog-cards-wrapper .blog-card .card-meta .card-author {
        font-weight: 600;
    }

.blog-cards-wrapper .blog-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #0c0407;
    min-height: 2.5em;
    line-height: 1.25;
}

.blog-cards-wrapper .blog-card .card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

    .blog-cards-wrapper .blog-card .card-actions .keep-reading-btn {
        color: #0c0407;
        font-weight: 500;
    }

        .blog-cards-wrapper .blog-card .card-actions .keep-reading-btn:hover {
            color: #e42527;
        }

    .blog-cards-wrapper .blog-card .card-actions .bookmark-btn {
        background: none;
        border: none;
        color: #6c757d;
        cursor: pointer;
        padding: 0.5rem;
    }

        .blog-cards-wrapper .blog-card .card-actions .bookmark-btn:hover {
            color: #e42527;
        }

        .blog-cards-wrapper .blog-card .card-actions .bookmark-btn svg {
            display: block;
            width: 18px;
            height: 18px;
        }

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 30px;
}

    .pagination-dots .dot {
        width: 8px;
        height: 8px;
        background-color: #f0f0f0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
    }

        .pagination-dots .dot.active {
            background-color: #e42527;
            width: 20px;
            border-radius: 4px;
        }

.subscribe-section {
    background: linear-gradient(135deg, #4d9eff, #5ca8ff);
    color: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: left;
    margin: 0px auto 60px;
    position: relative;
    overflow: hidden;
}

    .subscribe-section::before, .subscribe-section::after {
        content: "";
        position: absolute;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        pointer-events: none;
    }

    .subscribe-section::before {
        width: 300px;
        height: 300px;
        top: -50px;
        left: -80px;
    }

    .subscribe-section::after {
        width: 400px;
        height: 400px;
        bottom: -100px;
        right: -100px;
    }

    .subscribe-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        position: relative;
    }

    .subscribe-section .subscribe-form {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        max-width: 550px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 6px;
        position: relative;
    }

        .subscribe-section .subscribe-form input {
            flex: 1;
            border: none;
            padding: 18px 20px;
            font-size: 16px;
            outline: none;
            color: #444;
        }

        .subscribe-section .subscribe-form button {
            background: #9c7cf9;
            color: #fff;
            border: none;
            padding: 16px 28px;
            font-size: 16px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.2s ease;
        }

            .subscribe-section .subscribe-form button:hover {
                background: #8465f0;
            }

            .subscribe-section .subscribe-form button i {
                font-size: 16px;
            }

@media (max-width: 600px) {
    .subscribe-section {
        text-align: center;
        padding: 40px 20px;
    }

        .subscribe-section .subscribe-form {
            flex-direction: column;
        }

            .subscribe-section .subscribe-form button {
                width: 100%;
                justify-content: center;
            }

            .subscribe-section .subscribe-form input {
                width: 100%;
                border-bottom: 1px solid #eee;
                padding-bottom: 20px;
                margin-bottom: 10px;
            }
}

footer {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    padding: 40px 0;
}

    footer .title-footer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #0c0407;
        letter-spacing: 1px;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 600;
        width: 140px;
    }

    footer .footer-menu {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        padding-bottom: 60px;
        border-bottom: 1px solid #e6e6e6;
    }

@media (max-width: 768px) {
    footer .footer-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    footer .footer-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

footer .footer-menu li {
    border-bottom: 1px solid transparent;
    padding: 5px 0 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
}

footer .footer-menu a {
    color: #0c0407;
}

footer .adres-footer {
    line-height: 180%;
}

footer li.social-footer a {
    font-size: 20px;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom .copyring-text {
        font-size: 13px;
        color: #6c757d;
    }

.pricing-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fdfcff;
}

    .pricing-section .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height:1.2;
    }

    .pricing-section .section-description {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

    .billing-toggle-wrapper .billing-text {
        font-weight: 600;
        color: #6c757d;
        transition: color 0.3s;
    }

        .billing-toggle-wrapper .billing-text.active {
            color: #0c0407;
        }

.billing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .billing-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .billing-switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.4s;
        border-radius: 30px;
    }

        .billing-switch .slider::before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: #fff;
            transition: 0.4s;
            border-radius: 50%;
        }

    .billing-switch input:checked + .slider {
        background-color: #9c7cf9;
    }

        .billing-switch input:checked + .slider::before {
            transform: translateX(26px);
        }

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

    .pricing-card .price-header {
        margin-bottom: 10px;
    }

        .pricing-card .price-header .price-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0c0407;
        }

        .pricing-card .price-header .price-period {
            font-size: 1.1rem;
            color: #6c757d;
            font-weight: 500;
        }

    .pricing-card .plan-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .pricing-card .plan-description {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 30px;
    }

    .pricing-card .feature-list {
        padding-left: 0;
        margin-bottom: 30px;
        display: flex;
        grid-gap: 30px;
    }

        .pricing-card .feature-list .feature-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #0c0407;
            margin-bottom: 10px;
        }

            .pricing-card .feature-list .feature-item .check-icon {
                color: #9c7cf9;
                font-weight: 800;
                margin-right: 10px;
                font-style: normal;
            }


            @media (max-width: 1024px) {
    .pricing-card .feature-list{ 
    flex-flow: column;
    }
}

    .pricing-card .choose-plan-btn {
        background-color: #fff;
        line-height: 25px;
        color: #0c0407;
        font-weight: 600;
        letter-spacing: 0.75px;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        border: 1px solid #f0f0f0;
        width: 100%;
        font-size: 1rem;
        padding: 15px 24px;
        border-radius: 8px;
        font-weight: 600;
    }

        .pricing-card .choose-plan-btn:hover {
            border-color: #9c7cf9;
        }

    .pricing-card.highlighted {
        background-color: #9c7cf9;
        color: #fff;
    }

        .pricing-card.highlighted .plan-title,
        .pricing-card.highlighted .price-value {
            color: #fff;
        }

        .pricing-card.highlighted .price-period,
        .pricing-card.highlighted .plan-description,
        .pricing-card.highlighted .feature-item {
            color: rgba(255, 255, 255, 0.85);
        }

            .pricing-card.highlighted .feature-item .check-icon {
                color: #fff;
            }

        .pricing-card.highlighted .choose-plan-btn {
            background-color: #fff;
            color: #9c7cf9;
            border: none;
        }

            .pricing-card.highlighted .choose-plan-btn:hover {
                background-color: #f0f0f0;
            }

        .pricing-card.highlighted .most-popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgb(192.8540145985, 172.7664233577, 251.2335766423);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 30px;
        }

.category-browse-section {
    padding: 80px 0;
    background-color: #fff;
}

    .category-browse-section .category-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

        .category-browse-section .category-header .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0c0407;
            margin: 0;
            line-height:1.2;
        }

        .category-browse-section .category-header .browse-all-btn {
            background-color: #fff;
            line-height: 25px;
            color: #0c0407;
            font-weight: 600;
            letter-spacing: 0.75px;
            border-radius: 30px;
            padding: 12px 24px;
            font-size: 14px;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            border: 1px solid #f0f0f0;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
        }

            .category-browse-section .category-header .browse-all-btn:hover {
                border-color: #e42527;
                color: #e42527;
            }

    .category-browse-section .section-description {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 40px;
        max-width: 600px;
    }

.category-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .category-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .category-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 200px;
}

    .category-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .category-card .icon-box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        border: 1px solid rgba(156, 124, 249, 0.2);
        border-radius: 50%;
        background-color: rgba(156, 124, 249, 0.05);
    }

    .category-card .category-icon {
        width: 48px;
        height: 48px;
        display: block;
    }

    .category-card .card-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0c0407;
        margin-bottom: 5px;
    }

    .category-card .available-vacancies {
        font-size: 0.85rem;
        color: #6c757d;
    }

.special-info-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

    .special-info-card .job-count {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0c0407;
        margin-bottom: 5px;
    }

    .special-info-card .info-text {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 20px;
    }

    .special-info-card .explore-more-btn {
        background-color: #7c3aed;
        line-height: 25px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.75px;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        border-radius: 8px;
        padding: 12px 24px;
        font-size: 1rem;
    }

        .special-info-card .explore-more-btn:hover {
            background-color: rgb(95.3302325581, 20.4279069767, 223.5720930233);
        }

.about-us-section {
    padding: 80px 0;
}

    .about-us-section .about-us-content {
        display: flex;
        gap: 40px;
    }

@media (max-width: 992px) {
    .about-us-section .about-us-content {
        flex-direction: column;
    }
}

.image-video-section {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 80px;
    padding: 0;
}

    .image-video-section .main-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 80px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
    }

    .image-video-section .play-button-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
        cursor: pointer;
    }

        .image-video-section .play-button-overlay .play-icon {
            width: 100%;
            height: 100%;
        }

            .image-video-section .play-button-overlay .play-icon circle:nth-child(1) {
                stroke: #9c7cf9;
                stroke-width: 4;
                opacity: 0.5;
                fill: none;
            }

            .image-video-section .play-button-overlay .play-icon circle:nth-child(2) {
                fill: #fff;
            }

            .image-video-section .play-button-overlay .play-icon polygon {
                fill: #9c7cf9;
            }

.text-info-section {
    flex: 1;
    padding-left: 30px;
}

@media (max-width: 992px) {
    .text-info-section {
        padding-left: 0;
        margin-top: 30px;
    }
}

.text-info-section .section-tag {
    color: #9c7cf9;
}

.text-info-section .main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0c0407;
    margin: 20px 0;
}

.text-info-section .intro-text {
    font-size: 1rem;
    color: #0c0407;
    margin-bottom: 40px;
}

.text-info-section .info-block {
    margin-bottom: 30px;
}

    .text-info-section .info-block .info-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #0c0407;
        margin-bottom: 5px;
        display: inline-block;
    }

    .text-info-section .info-block .highlight {
        background-color: #fffe00; /* Parlak Sarı */
        padding: 2px 4px;
        border-radius: 4px;
        line-height: 1.5; /* Kutunun metni sarması için */
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    .text-info-section .info-block .info-text {
        font-size: 14px;
        color: #0c0407;
        line-height: 1.5;
    }

.text-info-section .browse-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    color: #9c7cf9;
    font-weight: 600;
    transition: color 0.2s;
}

    .text-info-section .browse-all-btn:hover {
        color: rgb(119.1459854015, 75.2335766423, 246.7664233577);
    }

    .text-info-section .browse-all-btn .arrow-icon {
        margin-left: 10px;
        font-style: normal;
    }

.hero-section {
    padding: 80px 0;
    padding-top: 60px;
}

    .hero-section .hero-content {
        display: flex;
        gap: 40px;
        align-items: center;
    }

@media (max-width: 992px) {
    .hero-section .hero-content {
        flex-direction: column;
        text-align: center;
    }
}

.hero-section .hero-text-area {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

@media (max-width: 992px) {
    .hero-section .hero-text-area {
        max-width: 100%;
        text-align: center;
    }

    .category-browse-section {
        padding: 0 !important;
    }

    .info-block {
        flex-flow: column
    }
    .blog-section {
        padding: 0 !important;
    }

    .pricing-section {
        padding: 0 0 80px;
    }
}

.hero-section .hero-text-area .tag-line {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e42527;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-section .hero-text-area .main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0c0407;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section .hero-text-area .main-heading {
        font-size: 3rem;
    }
}

.hero-section .hero-text-area .intro-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .hero-section .hero-text-area .intro-text {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.job-search-form {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .job-search-form {
        flex-direction: column;
        padding: 10px;
        box-shadow: none;
    }
}

.job-search-form .input-group {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .job-search-form .input-group {
        width: 100%;
        margin-bottom: 10px;
        border: 1px solid #f0f0f0;
        border-radius: 30px;
        padding: 10px;
    }
}

.job-search-form .input-group.job-title-group {
    border-right: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .job-search-form .input-group.job-title-group {
        border-right: none;
    }
}

.job-search-form .icon-job-title,
.job-search-form .icon-location {
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 10px;
    font-style: normal;
}

.job-search-form .form-input {
    border: none;
    padding: 10px 0;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #0c0407;
}

    .job-search-form .form-input.location-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

.job-search-form .icon-dropdown {
    color: #6c757d;
    margin-left: 10px;
    font-style: normal;
}

.job-search-form .find-job-btn {
    background-color: #9c7cf9;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.75px;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    padding: 15px 30px;
    border: none;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .job-search-form .find-job-btn {
        width: 100%;
    }
}

.job-search-form .find-job-btn:hover {
    background-color: rgb(119.1459854015, 75.2335766423, 246.7664233577);
}

.popular-searches {
    font-size: 0.9rem;
    color: #0c0407;
}

@media (max-width: 992px) {
    .popular-searches {
        text-align: center;
    }
}

.popular-searches .search-keywords {
    font-weight: 600;
}

.hero-image-area {
    flex: 0 0 50%;
    position: relative;
    height: 450px;
}

@media (max-width: 992px) {
    .hero-image-area {
        display: none;
    }
}

.hero-image-area .image-stack {
    position: absolute;
    width: 100%;
    height: 100%;
}

    .hero-image-area .image-stack .stack-image {
        position: absolute;
        width: 200px;
        height: 150px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 30px;
        transform: rotate(-5deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .hero-image-area .image-stack .img-1 {
        top: 0;
        right: 0;
        width: 250px;
        height: 180px;
        transform: rotate(5deg);
    }

    .hero-image-area .image-stack .img-2 {
        bottom: 0;
        right: 50px;
        width: 280px;
        height: 200px;
        z-index: 10;
    }

    .hero-image-area .image-stack .img-3 {
        top: 50px;
        left: 50px;
        width: 180px;
        height: 120px;
        transform: rotate(-15deg);
    }

    .hero-image-area .image-stack .img-4 {
        bottom: 50px;
        left: 0;
        width: 220px;
        height: 150px;
        transform: rotate(10deg);
    }
/*# sourceMappingURL=project.css.map */


/* ============================================= */
/* Temel Renk ve Aralık Tanımlamaları */
/* ============================================= */
:root {
    --color-primary: #5a38a3; /* Mor */
    --color-secondary: #f0f0f0; /* Açık Gri Arkaplan */
    --color-text-dark: #343a40;
    --color-text-light: #6c757d;
    --color-white: #ffffff;
    --border-radius-lg: 12px;
    --border-radius-sm: 6px;
}

/* ============================================= */
/* Form Bölümü Genel Stilleri */
/* ============================================= */
#request {
    padding: 80px 0 0;
}

    #request .request-panel {
        background-color: var(--color-white);
        border-radius: var(--border-radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 40px;
    }

    /* Form İçeriğini Yan Yana Getiren Çevreleyici */
    #request .request-content-wrapper {
        display: flex;
        gap: 30px;
        padding-top: 20px;
    }

@media (max-width: 992px) {
    #request .request-content-wrapper {
        flex-direction: column;
    }
}

/* Sol Sütun (Metin Alanı) */
#request .request-col-1 {
    flex: 1;
    max-width: 350px; /* Genişliği sabitleme */
    padding-right: 30px;
}

@media (max-width: 992px) {
    #request .request-col-1 {
        max-width: 100%;
        padding-right: 0;
    }
}

#request .request-col-1 h4 {
    color: var(--color-text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#request .request-col-1 p {
    color: var(--color-text-light);
}

/* Sağ Sütun (Adım Göstergesi ve Form) */
#request .request-col-2 {
    flex: 1;
    display: flex; /* Dikey gösterge ve formu yan yana getirir */
    gap: 30px;
}

@media (max-width: 768px) {
    #request .request-col-2 {
        flex-direction: column;
    }

        #request .request-col-2 .step-indicator-vertical {
            align-self: flex-start;
            border-bottom: 1px solid #ddd;
            padding-bottom: 20px;
        }
}


/* ============================================= */
/* Dikey Adım Göstergesi Stilleri (Görseldeki gibi) */
/* ============================================= */
.step-indicator-vertical {
    position: relative;
    padding-right: 30px;
    flex-shrink: 0; /* Küçülmesini engeller */
}

    .step-indicator-vertical .step-list {
        margin: 0;
        padding: 0;
    }

    /* Dikey Çizgi */
    .step-indicator-vertical::before {
        content: '';
        position: absolute;
        top: 5px;
        bottom: 5px;
        left: 20px; /* Dairelerin ortası */
        width: 2px;
        background-color: #ddd; /* Pasif çizgi */
        z-index: 1;
    }

    .step-indicator-vertical .nav-item {
        position: relative;
        z-index: 2;
        margin-bottom: 25px; /* Adımlar arası boşluk */
    }

        .step-indicator-vertical .nav-item:last-child {
            margin-bottom: 0;
        }

    .step-indicator-vertical .nav-link {
        display: flex;
        align-items: center;
        color: var(--color-text-light);
        font-size: 14px;
        padding: 0;
    }

        /* Adım Dairesi */
        .step-indicator-vertical .nav-link::before {
            content: ''; /* Numara için içerik gerekmez, liste metni kullanılıyor */
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            border: 3px solid var(--color-white);
            margin-right: 15px;
            transition: background-color 0.3s;
        }

        /* Aktif Adım Stili */
        .step-indicator-vertical .nav-link.active-step {
            color: var(--color-primary);
            font-weight: bold;
        }

            .step-indicator-vertical .nav-link.active-step::before {
                background-color: var(--color-primary);
            }


/* ============================================= */
/* Form Adımları ve Elemanları */
/* ============================================= */
.d-none {
    display: none
}
.request-form-steps {
    flex-grow: 1;
}

.step-heading {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd; /* Ayırıcı çizgi */
}

.form-control {
    border-radius: var(--border-radius-sm);
    padding: 12px;
    border: 1px solid #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 0.25rem rgba(90, 56, 163, 0.25);
        outline: none;
    }

/* Buton Grubu Stili */
.button-group {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
    border: 1px solid transparent;
}

    .btn.btn-primary {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-white);
    }

    .btn.btn-secondary {
        background-color: var(--color-text-light);
        border-color: var(--color-text-light);
        color: var(--color-white);
    }

    .btn.btn-success {
        background-color: #28a745;
        border-color: #28a745;
        color: var(--color-white);
    }

/* Özet Listesi Stili */
.list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}



.faq-section {
    padding: 80px 0;
    background-color: #fefeff;
}

    .faq-section .title-faq {
        display: flex;
        grid-gap: 30px;
    }

    .faq-section .section-tag {
        color: #4b90ff;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .faq-section .main-heading {
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 700;
        color: #0c0407;
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .faq-section .main-heading {
        font-size: 2.2rem;
    }
}

.faq-section .faq-intro-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 450px;
    line-height: 1.6;
    float: right;
    clear: right;
}

@media (max-width: 992px) {
    .faq-section .faq-intro-text {
        float: none;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

.faq-section .faq-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    clear: both;
}

@media (max-width: 992px) {
    .faq-section .faq-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

.faq-section .faq-column {
    flex: 1;
    max-width: 50%;
}

@media (max-width: 992px) {
    .faq-section .faq-column {
        max-width: 100%;
    }
}

.faq-section .faq-item {
    border-bottom: 1px solid #f0f0f0;
}

    .faq-section .faq-item.right-column:last-child {
        border-bottom: none;
    }

    .faq-section .faq-item:not(.open) .faq-question-header {
        padding: 20px 0;
        cursor: pointer;
    }

    .faq-section .faq-item:not(.open) .faq-answer-body {
        display: none;
    }

    .faq-section .faq-item.open .faq-question-header {
        padding: 20px 0 10px;
        cursor: pointer;
    }

    .faq-section .faq-item.open .faq-question-title {
        color: #9c7cf9;
    }

    .faq-section .faq-item.open .faq-answer-body {
        display: block;
        padding-bottom: 20px;
    }

.faq-section .faq-question-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.faq-section .faq-question-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c0407;
    margin: 0;
    transition: color 0.2s;
}

    .faq-section .faq-question-title i {
        margin-right: 10px;
        font-size: 1rem;
        transition: transform 0.3s;
    }

.faq-section .faq-answer-body p {
    font-size: 14px;
    color: #0c0407;
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 25px;
}

    .faq-section .faq-answer-body p:last-child {
        margin-bottom: 0;
    }




/* Genel Değişkenler ve Reset */
:root {
    --primary-color: #00bcd4; /* Turkuaz / Cyan */
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: white;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

/* Navbar Stili (Responsive İçin optimize edildi) */

.logo {
    font-size: 24px;
    font-weight: 700;
}

    .logo strong {
        color: var(--primary-color);
    }

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
    }

/* İletişim Sayfası Konteyneri */
.contact-index-container {
    padding: 50px 0px;
}

/* Başlık Bölümü */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    color: #9c7cf9;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-header h1 {
    /* Responsive font-size için vw kullanıldı (daha dinamik) */
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header .description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* İletişim İçerik Bölümü (Form ve Bilgiler) - Flexbox yapısı */
.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form {
    flex: 2; /* Form daha geniş bir alan kaplar */
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    min-width: 300px; /* Formun çok fazla daralmasını engeller */
}

.contact-info {
    flex: 1; /* Bilgiler daha dar bir alan kaplar */
    padding: 30px 0;
    min-width: 250px;
}

    .contact-form h2, .contact-info h2, .map-section h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 30px;
        color: var(--text-dark);
    }

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        font-family: inherit;
        font-size: 16px;
        transition: border-color 0.3s;
        /* max-width eklendi - opsiyonel ama önerilir */
        max-width: 100%;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }

/* Buton Stilleri */
.primary-btn {
    /* ... (Diğer buton stilleri) ... */
    padding: 12px 25px;
    border-radius: 6px;
    /* ... */
}

.submit-btn {
    width: 100%;
    font-size: 17px;
    margin-top: 10px;
}

/* İletişim Bilgileri Blokları */
.info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    /* Box shadow eklendi: Daha modern görünüm için */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .info-block i {
        font-size: 24px;
        color: #9c7cf9;
        margin-right: 20px;
        margin-top: 5px;
        flex-shrink: 0; /* İkonun daralmasını engeller */
    }

.info-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-details p {
    font-size: 15px;
    color: var(--text-light);
    /* Küçük ekranlarda adresin düzgün yayılması için */
    word-wrap: break-word;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .map-placeholder iframe {
        width: 100%;
        height: 100%;
        border: 0;
        /* Harita içeriğinin responsive olması sağlanmıştır */
    }


/* ------------------------------------------- */
/* MEDYA SORGULARI (RESPONSIVE TASARIM)        */
/* ------------------------------------------- */


/* Tabletler ve Küçük Dizüstü Bilgisayarlar (992px ve altı) */
@media (max-width: 992px) {

    /* İki sütunun alt alta gelmesi */
    .contact-content {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        flex: none; /* Flex oranını kaldır */
        width: 100%;
    }

    .contact-info {
        padding: 0; /* İç dolguyu sıfırla, formun paddingi yeterli */
        margin-top: 20px;
    }
}

/* Mobil Cihazlar (576px ve altı) */
@media (max-width: 576px) {
    
    .nav-links {
        display: none; /* Mobil menüyü gizle */
    }

    /* Ana sayfa konteyner dolgusunu azalt */
    .contact-container {
        padding: 30px 0px;
    }

    .contact-index-container {
        padding: 50px 0px 0;
    }
    /* Başlık boyutunu küçült */
    .contact-header h1 {
        font-size: 30px;
    }

    .contact-header .description {
        font-size: 16px;
    }

    /* Form ve bilgi blokları için iç dolguyu küçült */
    .contact-form {
        padding: 20px;
    }

    .contact-info h2 {
        text-align: center; /* Başlığı ortala */
    }

    /* Harita yüksekliğini küçült */
    .map-placeholder {
        height: 300px;
    }
}

.contact-container {
    display: flex;
    grid-gap: 30px;
}

@media (max-width: 993px) {
    .contact-container {
        flex-flow: column;
    }
    .desc-title {
        padding: 60px 0 0
    }
}

.success-btn {
    background-color: #9c7cf9;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.75px;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    width:100%;
    border:none;
}

.header-actions .login-btn:hover {
    background-color: rgb(119.1459854015, 75.2335766423, 246.7664233577);
}




/*=============================================
  01. GENEL STİLLER VE DEĞİŞKENLER
=============================================*/
:root {
    --color-primary: #00bcd4; /* PermiHire Kurumsal Mavi/Turkuaz */
    --color-primary-dark: #00a0b7; /* Buton Hover Rengi */
    --color-text-dark: #212529; /* Başlıklar ve Ana Metin */
    --color-text-medium: #495057; /* Paragraf Metinleri */
    --color-text-light: #6c757d; /* Meta Bilgiler */
    --color-bg-light: #f8f9fa; /* Açık Gri Arka Plan */
    --color-border: #e9ecef; /* İnce Çizgi ve Border */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif; /* Okunurluk için ayrıldı */
    --max-content-width: 800px; /* Blog İçerik Alanının Maksimum Genişliği */
    --max-page-width: 1200px; /* Genel Sayfa Maksimum Genişliği */
}

/*=============================================
  02. ÖZEL CONTAINER YAPILARI
=============================================*/

/* Blog İçerik Konteyneri (Okunurluk için daraltılmış) */
.blog-content-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid Sistemi (Basit ve Responsive) */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Sütunlar arası boşluk */
}

.col-main { /* İçerik için (md-8) */
    flex: 2;
    min-width: 60%; /* Oranın korunmasına yardımcı olur */
}

.col-sidebar { /* Yan Çubuk için (md-4) */
    flex: 1;
    min-width: 300px; /* Minimum genişlik belirle */
}

/*=============================================
  03. BLOG DETAY BAŞLIK BÖLÜMÜ
=============================================*/
.blog-detail-hero {
    background-color: var(--color-bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.blog-category {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-detail-header h1 {
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-meta {
    font-size: 15px;
    color: var(--color-text-light);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .blog-meta i {
        color: var(--color-primary);
        margin-right: 8px;
    }

/*=============================================
  04. ÖNE ÇIKAN GÖRSEL VE İÇERİK
=============================================*/
.blog-feature-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .blog-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.blog-content-section {
    padding: 60px 0;
}

/* İçerik Yazı Stilleri (Okunurluk Odaklı) */
.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-medium);
}

    .blog-content p {
        margin-bottom: 25px;
    }

    .blog-content h2,
    .blog-content h3 {
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        color: var(--color-text-dark);
        border-bottom: 2px solid var(--color-border);
        padding-bottom: 5px;
        display: inline-block; /* Çizginin sadece başlık kadar uzaması için */
    }

    .blog-content blockquote {
        background-color: #f0f0f0;
        border-left: 6px solid var(--color-primary);
        padding: 25px;
        margin: 35px 0;
        font-style: italic;
        color: var(--color-text-dark);
        font-size: 18px;
        border-radius: 4px;
    }

/*=============================================
  05. ETİKETLER VE YAZAR KUTUSU
=============================================*/
.blog-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

    .blog-tags span {
        font-weight: 600;
        margin-right: 15px;
        color: var(--color-text-dark);
    }

    .blog-tags a {
        display: inline-block;
        background-color: var(--color-bg-light);
        color: var(--color-text-light);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 14px;
        margin-right: 8px;
        margin-bottom: 8px;
    }

        .blog-tags a:hover {
            background-color: var(--color-primary);
            color: white;
        }

/* Yazar Kutusu */
.author-box {
    display: flex;
    align-items: center;
    background-color: #fcfcfc;
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 25px;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

/*=============================================
  06. YAN ÇUBUK (SIDEBAR) STİLLERİ
=============================================*/
.sidebar-block {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .sidebar-block h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color-border);
    }

    .sidebar-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sidebar-block ul li {
            margin-bottom: 10px;
        }

            .sidebar-block ul li a {
                color: var(--color-text-medium);
                font-size: 15px;
                display: block;
                padding: 5px 0;
                transition: all 0.2s;
            }

                .sidebar-block ul li a:hover {
                    color: var(--color-primary);
                    padding-left: 5px;
                    font-weight: 600;
                }

/*=============================================
  07. RESPONSIVE AYARLAR (TABLET VE MOBİL)
=============================================*/

/* Tabletler (992px ve altı) */
@media (max-width: 992px) {
    .row {
        flex-direction: column; /* İçerik ve sidebar alt alta gelsin */
        gap: 0;
    }

    .col-main, .col-sidebar {
        min-width: 100%;
        max-width: 100%;
        flex: none;
    }

    .col-sidebar {
        margin-top: 40px; /* Sidebar üstüne boşluk */
    }

    .blog-detail-hero h1 {
        font-size: 40px;
    }
}

/* Mobil Cihazlar (576px ve altı) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .blog-detail-hero {
        padding: 40px 0;
    }

        .blog-detail-hero h1 {
            font-size: 30px;
        }

    .blog-content-section {
        padding: 40px 0;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}



/*=============================================
          01. GENEL STİLLER VE DEĞİŞKENLER
        =============================================*/
:root {
    --color-primary: #8a2be2; /* Tema rengi: Mor */
    --color-primary-light: #9340f1;
    --color-text-dark: #212529;
    --color-text-medium: #495057;
    --color-text-light: #ced4da;
    --color-bg-light: #f8f9fa;
    --color-border: #e9ecef;
}

.konteyner-genis {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

/* Buton Stili */
.primary-btn {
    background-color: var(--color-primary);
    color: white !important;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .primary-btn:hover {
        background-color: var(--color-primary-light);
    }

.ikincil-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-medium);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .ikincil-btn:hover {
        background-color: var(--color-border);
    }

.tam-genislik-btn {
    width: 100%;
}

/*=============================================
          02. ADIM GÖSTERGELERİ (STEPPER)
        =============================================*/
.subscription-stepper-section {
    padding: 60px 0;
}

.stepper-kapsayici {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 20px;
}

.stepper-adim {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
}

    .stepper-adim.aktif {
        color: var(--color-text-dark);
        border-bottom: 3px solid var(--color-primary);
    }

    .stepper-adim .numara {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--color-border);
        color: var(--color-text-medium);
        margin-right: 10px;
        transition: all 0.3s;
    }

    .stepper-adim.aktif .numara {
        background-color: var(--color-primary);
        color: white;
    }

/* Adım İçerikleri */
.adimlari-icerik {
    min-height: 450px; /* İçerik geçişinde kaymayı engellemek için */
}

.adim-icerik {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

    .adim-icerik.aktif {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============================================
          03. ADIM 1: PAKET KARTI
        =============================================*/
.paket-kart {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--color-primary), #6f1ccf);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.paket-baslik {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.etiket {
    background-color: white;
    color: var(--color-primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.fiyat-alan {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

    .fiyat-alan .sure {
        font-size: 18px;
        font-weight: 400;
        opacity: 0.8;
    }

.paket-adi {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aciklama {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ozellikler {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

    .ozellikler li {
        padding: 8px 0;
        font-size: 16px;
    }

    .ozellikler i {
        color: white;
        margin-right: 10px;
    }

.paket-kart .primary-btn {
    background-color: white;
    color: var(--color-primary) !important;
    font-weight: 700;
}

    .paket-kart .primary-btn:hover {
        background-color: var(--color-border);
    }

/*=============================================
          04. ADIM 2: FORM BİLGİLERİ
        =============================================*/
.form-kapsayici {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-text-dark);
    }

    .form-header p {
        color: var(--color-text-medium);
        margin-top: 10px;
    }

.form-grup, .form-grup-kilit {
    margin-bottom: 25px;
}

    .form-grup label, .form-grup-kilit label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .form-grup input, .form-grup-kilit input {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        font-size: 16px;
    }

.required {
    color: var(--color-primary);
}

.form-grup-kilit {
    padding: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    background-color: rgba(138, 43, 226, 0.05);
}

    .form-grup-kilit .aciklama {
        font-size: 14px;
        color: var(--color-text-medium);
        margin-top: 10px;
        font-style: italic;
    }

.form-butonlar {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

/*=============================================
          05. ADIM 3: ÖDEME ÖZETİ
        =============================================*/
.ozet-kart {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

    .ozet-kart h3 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 24px;
        font-weight: 700;
    }

.ozet-detaylar {
    margin-bottom: 30px;
}

.detay-satir {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted var(--color-border);
    font-size: 16px;
}

    .detay-satir .etiket {
        color: var(--color-text-medium);
    }

    .detay-satir .deger {
        font-weight: 600;
        color: var(--color-text-dark);
    }

.text-primary {
    color: var(--color-primary) !important;
}

.ayrac {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 15px 0;
}

    .ayrac.kalin {
        border-top: 2px solid var(--color-text-dark);
    }

.toplam-fiyat {
    padding-top: 20px;
    font-size: 20px;
}

.buyuk-fiyat {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

/* Ödeme Periyodu Seçimi */
.abonelik-secim-kapsayici {
    margin: 25px 0;
    padding: 15px 0;
}

.secenek-baslik {
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    font-size: 17px;
}

    .secenek-baslik i {
        color: var(--color-primary);
        margin-right: 8px;
    }

.secenek-kart {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background-color: white;
}

    .secenek-kart:hover {
        border-color: var(--color-primary);
    }

    .secenek-kart.aktif {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.1);
    }

    .secenek-kart input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid var(--color-text-light);
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
        transition: all 0.2s;
    }

        .secenek-kart input[type="radio"]:checked {
            border: 6px solid var(--color-primary);
        }

    .secenek-kart > div {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Mobil uyumluluk için */
    }

    .secenek-kart .baslik {
        font-weight: 600;
        font-size: 16px;
        color: var(--color-text-dark);
    }

    .secenek-kart .fiyat {
        font-weight: 700;
        font-size: 18px;
        color: var(--color-primary);
    }

.indirimli {
    background-color: var(--color-bg-light);
}

.indirim-etiketi {
    position: absolute;
    top: -15px;
    right: 15px;
    background-color: #ffc107;
    color: var(--color-text-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tasarruf-bilgisi {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
    margin-top: 5px;
    text-align: right;
    width: 100%;
    margin-left: 15px;
}

    .tasarruf-bilgisi i {
        margin-right: 5px;
    }


/*=============================================
          06. RESPONSIVE AYARLAR
        =============================================*/
@media (max-width: 768px) {
    .stepper-kapsayici {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .stepper-adim {
        margin-bottom: 10px;
    }

    .form-butonlar {
        flex-direction: column;
        gap: 15px;
    }

    .secenek-kart > div {
        flex-direction: column;
        align-items: flex-start;
    }

    .secenek-kart .fiyat {
        margin-top: 5px;
    }

    .tasarruf-bilgisi {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .paket-kart {
        padding: 25px;
    }

    .fiyat-alan {
        font-size: 40px;
    }

    .form-kapsayici, .ozet-kart {
        padding: 20px;
    }
}





.blog-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
}
    .blog-container .blog-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 10px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
        flex: 0 0 calc(33.3333% - 20px * 2 / 3);
        margin-right: 20px;
        display: flex;
        flex-direction: column;
    }

@media (max-width: 992px) {
    .blog-container {
    grid-template-columns: 1fr 1fr;

    }
}

@media (max-width: 576px) {
   
    .blog-container {
    grid-template-columns: 1fr;

    }
}

.blog-container .blog-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-container .blog-card .card-image-box {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

    .blog-container .blog-card .card-image-box .card-image {
        width: 100%;
        height: auto;
        display: block;
    }

.blog-container .blog-card .card-content {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-container .blog-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
}

    .blog-container .blog-card .card-meta .card-author {
        font-weight: 600;
    }

.blog-container .blog-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #0c0407;
    min-height: 2.5em;
    line-height: 1.25;
}

.blog-container .blog-card .card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

    .blog-container .blog-card .card-actions .keep-reading-btn {
        color: #0c0407;
        font-weight: 500;
    }

        .blog-container .blog-card .card-actions .keep-reading-btn:hover {
            color: #e42527;
        }

    .blog-container .blog-card .card-actions .bookmark-btn {
        background: none;
        border: none;
        color: #6c757d;
        cursor: pointer;
        padding: 0.5rem;
    }

        .blog-container .blog-card .card-actions .bookmark-btn:hover {
            color: #e42527;
        }

        .blog-container .blog-card .card-actions .bookmark-btn svg {
            display: block;
            width: 18px;
            height: 18px;
        }






        /* Ana Renkler */
:root {
    --primary-color: #8a2be2; /* Mor */
    --secondary-color: #6f1ccf;
    --text-dark: #212529;
    --text-medium: #495057;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

/* ===================================
   HERO BÖLÜMÜ
   =================================== */
.about-hero {
    padding: 80px 0 40px;
    text-align: center;
    background-color: white;
}
.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height:1.2;
}
.about-hero .subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero-image-placeholder {
    height: 400px;
    /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    border-radius: 15px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
}

/* ===================================
   MİSYON & VİZYON BÖLÜMÜ
   =================================== */
.about-mission-vision {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 40px;
}
.card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    text-align: center;
}
.card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ===================================
   KURULUŞ HİKAYESİ (Timeline)
   =================================== */
.about-story {
    padding: 40px 0 0;
}
.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}
/* Zaman çizgisini simgeleyen dikey çizgi */
.story-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 55px; /* Başlık hizasına göre ayarlandı */
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
/* Sol taraftaki elemanlar */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    border-right: 3px solid var(--primary-color);
}
/* Sağ taraftaki elemanlar */
.timeline-item:nth-child(even) {
    left: 50%;
    border-left: 3px solid var(--primary-color);
}
/* Tarih Etiketleri */
.timeline-date {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}
/* Daire işaretleri */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13.5px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even)::after {
    left: -13.5px;
    right: auto;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    .layout-grid {
        grid-template-columns: 1fr;
    }
    .about-story h2 {
        text-align: left;
    }
    .story-timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 10px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
        border-right: none;
        border-left: 3px solid var(--primary-color);
    }
    .timeline-item::after,
    .timeline-item:nth-child(even)::after {
        left: 8px;
        right: auto;
    }
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 16px;
    z-index: 9999;
    display: none;
}

.cookie-banner-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons button {
    padding: 10px 16px;
    margin-left: 8px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: white;
}

.cookie-buttons {
    display: flex;
}

#cookie-accept,
#cookie-modal-accept {
    background: #2563eb;
    color: white;
    border: none;
}

#cookie-customize,
#cookie-modal-save {
    background: #f3f4f6;
}

#cookie-reject,
#cookie-modal-reject {
    background: white;
}

/* ===== Modal Background ===== */

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* ===== Modal Dialog ===== */

.cookie-modal-dialog {
    background: white;
    border-radius: 12px;
    width: 95%;
    max-width: 700px;
    padding: 20px 24px;
}

/* ===== Header ===== */

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

#cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Body ===== */

.cookie-category {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-locked {
    font-size: 12px;
    color: #9ca3af;
}

/* ===== Footer ===== */

.cookie-modal-footer {
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ===== Toggle Switch ===== */

.switch {
    position: relative;
    width: 44px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 30px;
    transition: .2s;
}

    .slider:before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        top: 3px;
        background: white;
        border-radius: 50%;
        transition: .2s;
    }

input:checked + .slider {
    background: #2563eb;
}

    input:checked + .slider:before {
        transform: translateX(20px);
    }

/* ===== Mobile ===== */

@media(max-width:768px) {

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .cookie-modal-dialog {
        overflow-y: auto;
    }
}


.mb-3 {
    display: flex;
    flex-flow: column;
    grid-gap: 10px;
    margin-bottom: 20px;
}


/* ===== Overlay ===== */

.policy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

    /* Popup aktifken */

    .policy-modal.show {
        display: flex;
    }

/* ===== Dialog ===== */

.policy-modal-dialog {
    background: #fff;
    border-radius: 12px;
    width: 95%;
    max-width: 650px;
    padding: 20px 24px;
}

/* ===== Header ===== */

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.policy-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Body ===== */

.policy-modal-body {
    padding: 14px 0;
    line-height: 1.7;
    color: #444;
}

/* ===== Footer ===== */

.policy-modal-footer {
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.policy-btn {
    border-radius: 6px;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
}

.policy-btn-accept {
    background: #198754;
    color: white;
}

.policy-btn-decline {
    background: #dc3545;
    color: white;
}

.policy-modal-body {
    max-height: 65vh; /* Ekranın %65 yüksekliği */
    overflow-y: auto; /* İçerik taşarsa scroll */
    padding-right: 10px; /* Scroll bar metni kapamasın */
    line-height: 1.6;
    font-size: 15px;
}

/* Mobil düzenleme */
@media (max-width: 768px) {
    .policy-modal-body {
        max-height: 60vh; /* Mobilde az daha küçük */
        font-size: 14px;
    }
}
