        body, html {
            height: 100%;
            margin: 0;
            background-color: #f8f9fa;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden; /* Sadece yatay kaydırmayı kapatıyoruz, dikey gerekirse açılsın */
        }
        
        
        .social-icons a {
            display: inline-block;
            transition: transform 0.3s ease;
            text-decoration: none;
        }
        .social-icons a:hover {
            transform: scale(1.15);
        }
        .social-icons .fa-instagram { color: #E1306C; }
        .social-icons .fa-youtube { color: #FF0000; }
        .social-icons .fa-tiktok { color: #000000; }

        /* Sabit Alt Butonlar (App-like UI) */
        .fixed-bottom-menu {
            box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
            z-index: 1030;
        }
        .menu-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 14px 0;
            text-decoration: none;
            color: #fff;
            transition: background-color 0.2s;
        }
        .menu-btn:hover {
            color: #f1f1f1;
            filter: brightness(0.9);
        }
        .menu-btn i {
            font-size: 1.6rem;
            margin-bottom: 4px;
        }
        .menu-btn span {
            font-size: 0.9rem;
            font-weight: 600;
        }
        .bg-call { background-color: #0d6efd; }
        .bg-wp { background-color: #25D366; }
        .bg-map { background-color: #dc3545; }

       
        .info-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .oval-btn {
            background-color: #ffffff;
            color: #333;
            border: 2px solid #00E1FF; /* Logonuzun açık mavi tonu */
            border-radius: 50px; /* Oval yapı */
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }
        .oval-btn i {
            margin-right: 8px;
            color: #00E1FF;
            transition: color 0.3s ease;
        }
        .oval-btn:hover {
            background-color: #00E1FF;
            color: #fff;
            box-shadow: 0 6px 15px rgba(0, 225, 255, 0.4);
            transform: translateY(-3px); /* Üzerine gelince hafif yukarı kalkma */
            border-color: #00E1FF;
        }
        .oval-btn:hover i {
            color: #fff;
        }