.top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .top-nav .logo {
            max-height: 50px;
            width: auto;
        }

        .top-nav .login-btn {
            padding: 8px 15px;
            background-color: #355e8a;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }

        .category-block .inner-box {
            background: linear-gradient(135deg, #ffffff, #f7f9fc);
            border-radius: 16px;
            padding: 25px;
            transition: 0.25s ease;
            display: flex;
            align-items: center;
            border: 1px solid #ececec;
        }

        .category-block .inner-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        }

        .category-block .icon-box {
            width: 60px;
            height: 60px;
            background: #eef3ff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            transition: 0.2s;
        }

        .category-block .inner-box:hover .icon-box {
            background: #4a6cf7;
            color: #fff;
        }

        .category-block h4 {
            font-size: 20px;
            margin: 0;
        }

        .category-block p {
            margin: 5px 0 0;
            color: #6b7280;
        }

        .map-wrapper {
            background: rgba(255, 255, 255, 0.274);
            /* Beyaz opak */
            padding: 15px;
            border-radius: 20px;
            /* Oval görünüm */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
            /* Derinlik efekti */
            display: inline-block;
        }

        .about-wrapper {
            background: rgba(255, 255, 255, 0.603);
            padding: 40px 20px;
            border-radius: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .about-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-top-left-radius: 100px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 100px;
            border-bottom-left-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-nav {
                flex-direction: row;
                align-items: center;
            }

            .top-nav .nav-right {
                margin-top: 10px;
                width: 100%;
                text-align: center;
            }

            .top-nav .login-btn {
                display: inline-block;
                width: auto;
                padding: 6px 12px;
            }

            .top-nav .logo {
                max-height: 40px;
            }
        }

        @media (max-width: 480px) {
            .top-nav .logo {
                max-height: 35px;
            }

            .top-nav .login-btn {
                font-size: 14px;
                padding: 5px 10px;
            }
        }