
        /* Header */
        .header-container {
            position: relative;
            background-color: #00a58e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-left,
        .header-right {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-img,
        .pf-img {
            width: 24vw;           /* 💻 Masaüstünde ekrana göre büyür */
            max-width: 400px;      /* Çok büyümesin */
            min-width: 120px;      /* Çok küçülmesin */
            height: auto;
        }

        .search-absolute-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            justify-content: center;
            width: 400px;
            max-width: 90%;
        }

        /* Arama kutusu */
        .search-box-wrapper {
            margin: 0;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .search-box-form {
            display: flex;
            border: 2px solid #0A1835;
            border-radius: 30px;
            overflow: hidden;
            width: 350px;
            height: 40px;
            background-color: #00a58e;
        }

        .search-box-input {
            flex: 1;
            padding: 8px 12px;
            border: none;
            outline: none;
            font-size: 14px;
            background-color: #00a58e;
            color: #0A1835;
        }

        .search-box-input::placeholder {
            color: #0A1835;
        }

        .search-box-button {
            background-color: #00a58e;
            border: none;
            color: #0A1835;
            padding: 0 12px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-box-button:hover {
            background-color: #00a58e;
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: flex-start;
            background-color: #f5f5f5;
            padding-left: 50px;
            flex-wrap: wrap;
        }

        .navbar a {
            color: #0A173C;
            text-decoration: none;
            padding: 10px 15px;
            font-weight: bold;
            font-size: 18px;
            background-color: #f5f5f5;
            border-top: 6px solid transparent;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .navbar a:hover {
            border-top: 6px solid #00a58e;
        }

        /* -------------------------- */
        /* MOBİL UYUMLULUK (768px altı) */
        /* -------------------------- */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: center;
                padding: 30px 20px;
            }

            .header-left,
            .header-right {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }

            .logo-img,
            .pf-img {
                width: 200px; /* 📱 Mobilde küçültülmüş görünüm */
            }

            .search-absolute-center {
                position: static;
                transform: none;
                width: 100%;
                max-width: 90%;
                order: 2;
                margin: 10px 0;
            }

            .search-box-form {
                width: 100%;
                max-width: 90%;
                height: 38px;
                font-size: 13px;
            }

            .search-box-input {
                font-size: 13px;
                padding: 7px 10px;
            }

            .search-box-button {
                padding: 0 10px;
                font-size: 13px;
            }

            .navbar {
                flex-direction: column;
                padding: 10px 20px;
                align-items: flex-start;
            }

            .navbar a {
                padding: 12px 0;
                font-size: 16px;
                width: 100%;
                border-top: none;
                border-left: 4px solid transparent;
            }

            .navbar a:hover {
                border-left: 4px solid #00a58e;
            }
        }
