        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Dil Değiştirme Butonu - SAĞ TARAFTA */
        .language-switcher {
            position: fixed;
            top: 5px;
            right: 20px;
            z-index: 1002;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .language-button {
            background: rgba(44, 62, 80, 0.9);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }

        .language-button:hover {
            background: rgba(52, 152, 219, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .language-button i {
            font-size: 16px;
        }

        .language-options {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(44, 62, 80, 0.95);
            border-radius: 10px;
            padding: 10px 0;
            margin-top: 5px;
            min-width: 150px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .language-options.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .language-option:last-child {
            border-bottom: none;
        }

        .language-option:hover {
            background: rgba(52, 152, 219, 0.3);
            color: #3498db;
            padding-left: 25px;
        }

        .language-flag {
            width: 20px;
            height: 15px;
            margin-right: 8px;
            border-radius: 2px;
            display: inline-block;
            vertical-align: middle;
        }

        /* Top Bar - Sosyal Medya ve Telefon */
        .top-bar {
            background: rgba(44, 62, 80, 0.95);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;

        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.2);
        }

        .social-link.facebook:hover {
            background: #3b5998;
            color: white;
        }

        .social-link.twitter:hover {
            background: #1da1f2;
            color: white;
        }

        .social-link.google-plus:hover {
            background: #db4437;
            color: white;
        }

        .social-link.youtube:hover {
            background: #ff0000;
            color: white;
        }

        .social-link.instagram:hover {
            background: #e4405f;
            color: white;
        }

        .social-link.linkedin:hover {
            background: #479edc;
            color: white;
        }

        .phone-number {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 8px 15px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }

        .phone-number:hover {
            background: rgba(52, 152, 219, 0.3);
            transform: translateY(-2px);
        }

        .phone-number i {
            color: #3498db;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: rgba(44, 62, 80, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            width: 100%;
            top: 52px;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            animation: logoFloat 8s ease-in-out infinite;
        }

        .logo-img {
            height: 50px;
            transition: all 0.5s ease;
            filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .logo:hover .logo-img {
            transform: scale(1.85) rotate(1deg);
            filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .nav-menu {
            display: flex;
            list-style: none;

        }

        .nav-item {
            margin-left: 1.5rem;
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .nav-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
            font-size: 0.9rem;
        }

        .nav-link:hover {
            color: #3498db;
        }

        .nav-link:hover i {
            transform: rotate(180deg);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #3498db;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(44, 62, 80, 0.95);
            min-width: 280px;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            padding: 10px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: rgba(52, 152, 219, 0.2);
            color: #3498db;
            padding-left: 25px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7),
                    rgba(0, 0, 0, 0.5)),
                url('https://www.gulsevinhukuk.com//assets/img/bg.jpg');
            /*url('https://www.gulsevinhukuk.com/upload/product/product_2021-01-12_17-49-40.jpg');*/
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            animation: backgroundAnimation 30s infinite alternate ease-in-out;
        }

        @keyframes backgroundAnimation {
            0% {
                background-size: 100% auto;
                background-position: center center;
                filter: brightness(1) contrast(1);
            }

            20% {
                background-size: 105% auto;
                background-position: 10% center;
                filter: brightness(1.05) contrast(1.02);
            }

            40% {
                background-size: 102% auto;
                background-position: center 10%;
                filter: brightness(1.02) contrast(1.01);
            }

            60% {
                background-size: 108% auto;
                background-position: 90% center;
                filter: brightness(1.08) contrast(1.03);
            }

            80% {
                background-size: 104% auto;
                background-position: center 5%;
                filter: brightness(1.04) contrast(1.02);
            }

            100% {
                background-size: 100% auto;
                background-position: center center;
                filter: brightness(1) contrast(1);
            }
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 2s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            animation: titleGlow 4s infinite alternate;
        }

        @keyframes titleGlow {
            from {
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
                    0 0 0 rgba(52, 152, 219, 0);
            }

            to {
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
                    0 0 20px rgba(52, 152, 219, 0.8);
            }
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #f0f0f0;
            animation: fadeInUp 2.2s ease-out;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #2c3e50, #2c3e50);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: pulse 3s infinite;
            box-shadow: 0 4px 15px rgba(106, 187, 240, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(6, 219, 231, 0.6);
            animation: none;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
            }

            50% {
                box-shadow: 0 4px 25px rgba(52, 152, 219, 0.8);
            }

            100% {
                box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
            }
        }

        .main-content {
            padding: 1.5rem 0;
            background: #f5f7fa;
        }

        .content-section {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .top-boxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .top-box {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
        }

        .top-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .top-box i {
            font-size: 3rem;
            color: #236693;
            margin-bottom: 1.5rem;
        }

        .top-box h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* Çalışma Saatleri için özel stil */
        .working-hours {
            margin-top: 1.5rem;
        }

        .hours-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .hours-icon {
            color: #e74c3c;
            margin-right: 12px;
            font-size: 1.1rem;
            margin-top: 2px;
            min-width: 20px;
        }

        .hours-content {
            flex: 1;
        }

        .hours-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.3rem;
        }

        .hours-detail {
            color: #555;
            line-height: 1.5;
        }

        .appointment-note {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            border-left: 4px solid #e74c3c;
        }

        .appointment-note p {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
        }

        .grid-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;

        }

        .grid-box {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .grid-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .grid-box i {
            font-size: 2.5rem;
            color: #236693;
            margin-bottom: 1rem;
        }

        .grid-box h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            line-height: 1.4;
            flex-grow: 0;
        }

        .grid-box p {
            color: #555;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .service-button1 {
            display: inline-block;
            padding: 10px 20px;
            background: #236693;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(68, 209, 233, 0.3);
            border: 2px solid #3498db;
            margin-top: 20px;
            align-self: center;
        }

        .service-button1:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.5);
            background: white;
            color: #3498db;
        }

        .service-button {
            display: inline-block;
            padding: 10px 20px;
            background: #236693;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(68, 209, 233, 0.3);
            border: 2px solid #3498db;
            margin-top: auto;
            align-self: center;
        }

        .service-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.5);
            background: white;
            color: #3498db;
        }

        .more-button-container {
            text-align: center;
            margin-top: 2rem;
        }

        .more-button {
            display: inline-block;
            padding: 12px 30px;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            border: 2px solid #e74c3c;
        }

        .more-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
            background: white;
            color: #e74c3c;
        }

        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        /* YENİ WHATSAPP BUTONU STİLİ - ORİJİNAL HALİ */
        .whatsapp-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .whatsapp-button {
            border-radius: 100px;
            border-color: rgba(0, 0, 0, 0);
            line-height: 22px;
            color: rgb(79, 206, 93);
            padding: 0px;
            font-family: inherit;
            font-weight: bold;
            font-size: 16px;
            background-color: rgb(255, 255, 255);
            text-transform: none;
            border-width: 0px;
            max-width: 879px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            overflow: hidden;
            position: relative;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-overlay {
            padding: 10px 25px;
            border-radius: 100px;
            background-color: rgba(0, 0, 0, 0);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-icon svg {
            width: 100%;
            height: 100%;
            fill: #4FCE5D;
        }

        .whatsapp-text {
            color: #4FCE5D;
            font-weight: bold;
            font-size: 16px;
            white-space: nowrap;
        }

        .whatsapp-message {
            background: white;
            color: #333;
            padding: 12px 16px;
            border-radius: 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            max-width: 250px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: relative;
            font-size: 14px;
            line-height: 1.4;
        }

        .whatsapp-message::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        .whatsapp-container:hover .whatsapp-message {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hamburger Menü için Özel Stiller */
        .mobile-dropdown-menu {
            display: none;
            background: rgba(52, 152, 219, 0.15);
            width: 100%;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-menu.active {
            display: block;
            max-height: 500px;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 12px 40px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        .mobile-dropdown-item:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-item:hover {
            background-color: rgba(52, 152, 219, 0.3);
            color: #da07dd;
            padding-left: 45px;
        }

        /* Hakkımızda ve Avukatlar*/
        .top-boxes-hakkimizda {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            /*repeat(kaç kutu olacak, 1fr)*/
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .top-boxes-tek {
            /* display: grid;
            grid-template-columns: repeat(1, 1fr);/*repeat(kaç kutu olacak, 1fr)
            gap: 1rem;
            margin-bottom: 1.5rem;*/
            text-align: left;
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
        }

        .top-boxes-cift {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /*repeat(kaç kutu olacak, 1fr)*/
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .top-box-hakkimizda {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
        }

        .top-box-hakkimizda:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .top-box-hakkimizda i {
            font-size: 3rem;
            color: #236693;
            margin-bottom: 1.5rem;
        }

        .top-box-hakkimizda h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .grid-boxes-hakkimizda {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .grid-box-hakkimizda {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .grid-box-hakkimizda:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .grid-box-hakkimizda i {
            font-size: 2.5rem;
            color: #236693;
            margin-bottom: 1rem;
        }

        .grid-box-hakkimizda h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            line-height: 1.4;
            flex-grow: 0;
        }

        .grid-box-hakkimizda p {
            color: #555;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }


        /*-----------------------*/

        /* Responsive Tasarım */
        @media screen and (max-width: 1200px) {
            .nav-item {
                margin-left: 1rem;
            }

            .nav-link {
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 992px) {
            .grid-boxes {
                grid-template-columns: repeat(2, 1fr);
            }

            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .phone-number {
                font-size: 14px;
                padding: 6px 12px;
                margin-right: auto;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .cta-button {
                font-size: .50rem;
            }

            .hero-section {
                background: linear-gradient(rgba(0, 0, 0, 0.7),
                        rgba(0, 0, 0, 0.5)),
                    url('https://www.gulsevinhukuk.com//assets/img/bg1.jpg');
                /*url('https://www.gulsevinhukuk.com/upload/product/product_2021-01-12_17-49-401.jpg');    */
                animation: backgroundAnimation 80s infinite alternate ease-in-out;
            }

            .service-button {
                font-size: 0.63rem;
            }

            .top-box i {
                font-size: 1.5rem;
            }

            .top-box {
                padding: 0.5rem;
            }

            .main-content {
                padding: 0.5rem 0;
            }

            .content-section {
                padding: 0.5rem;
                margin-bottom: 1.5rem;
            }
            img{
                width: 100%;
                height: 100%;
            }
        }

        @media screen and (max-width: 768px) {
            .logo {
                align-items: center;
                margin-left: 30%;
            }

            .top-bar {
                padding: 6px 0;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }

            .social-links {
                gap: 8px;
            }

            .social-link {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .phone-number {
                font-size: 13px;
                padding: 5px 10px;
                margin-right: auto;
                margin-top: auto;
            }

            .hamburger {
                display: flex;
            }

            /* DÜZELTİLMİŞ HAMBURGER MENÜ - Alt linkler eklendi */
            .nav-menu {
                position: fixed;
                top: 90px;
                right: -100%;
                background-color: rgba(44, 62, 80, 0.98);
                width: 85%;
                max-width: 320px;
                height: calc(100vh - 120px);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 1rem 0;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px;
                backdrop-filter: blur(10px);
                z-index: 1001;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 0;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-item:last-child {
                border-bottom: none;
            }

            .nav-link {
                display: flex;
                padding: 12px 20px;
                font-size: 1rem;
                justify-content: space-between;
                align-items: center;
                color: white;
                width: 100%;
            }

            .dropdown-menu {
                display: none;
            }

            .mobile-dropdown-menu {
                display: block;
            }

            .top-boxes {
                grid-template-columns: 1fr;
            }

            .top-boxes-tek {
                grid-template-columns: 1fr;
                /*repeat(kaç kutu olacak, 1fr)*/

            }

            .top-boxes-tek h2 {
                font-size: 100%;
            }

            img {
                width: 100%;
                height: 100%;
            }

            .top-boxes-cift {
                grid-template-columns: 2fr;
                /*repeat(kaç kutu olacak, 2fr)*/
            }

            .grid-boxes {
                grid-template-columns: 1fr;
            }

            /* Hamburger Animasyonu */
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero-section {
                min-height: 60vh;
                padding-top: 150px;

            }

            .whatsapp-container {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                font-size: 14px;
            }

            .whatsapp-overlay {
                padding: 8px 20px;
            }

            .whatsapp-icon {
                width: 20px;
                height: 20px;
            }

            .whatsapp-text {
                font-size: 14px;
            }

            .whatsapp-message {
                max-width: 200px;
                font-size: 13px;
            }

            /* Mobilde dil değiştirici - SAĞ TARAFTA */
            .language-switcher {
                top: 15px;
                right: 15px;
            }

            .language-button {
                padding: 8px 15px;
                font-size: 13px;
                margin-top: auto;
                margin-left: auto;
            }

            .language-options {
                min-width: 130px;
            }

            .cta-button {
                font-size: .50rem;
            }

            .hero-section {
                background: linear-gradient(rgba(0, 0, 0, 0.7),
                        rgba(0, 0, 0, 0.5)),
                    url('https://www.gulsevinhukuk.com//assets/img/bg1.jpg');
                /*url('https://www.gulsevinhukuk.com/upload/product/product_2021-01-12_17-49-401.jpg');    */
                animation: backgroundAnimation 80s infinite alternate ease-in-out;
            }

            .service-button {
                font-size: 0.63rem;
            }

            .top-box i {
                font-size: 1.5rem;
            }

            .top-box {
                padding: 0.5rem;
            }

            .main-content {
                padding: 0.5rem 0;
            }

            .content-section {
                padding: 0.5rem;
                margin-bottom: 1.5rem;
            }

            .container {
                max-width: 100%;
                margin: 0 auto;
                padding: 0 20px;
            }

            header {
                position: fixed;
            }

            .top-boxes-hakkimizda {
                padding-top: 150px;

            }
            img{
                width: 100%;
                height: 100%;
            }

        }

        @media screen and (max-width: 480px) {

            html,
            body {
                overflow-x: hidden;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 8px;
            }

            .social-links {
                gap: 1px;
            }

            .social-link {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }

            .phone-number {
                font-size: 8px;
                padding: 4px 8px;
                margin-right: auto;
                margin-top: auto;
            }

            .hero-section {
                min-height: 50vh;
                padding: 2rem 1rem;
                padding-top: 150px;

            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .logo-img {
                height: 60px;
            }

            .grid-box h3 {
                font-size: 1.2rem;
            }

            /* Daha kompakt hamburger menü için ek ayarlar */
            .nav-menu {
                width: 90%;
                max-width: 300px;
            }

            .nav-link {
                padding: 10px 15px;
                font-size: 0.75rem;
            }

            .mobile-dropdown-item {
                padding: 10px 35px;
                font-size: 0.85rem;
            }

            .whatsapp-button {
                font-size: 13px;
            }

            .whatsapp-overlay {
                padding: 6px 15px;
            }

            .whatsapp-icon {
                width: 15px;
                height: 15px;
            }

            .whatsapp-text {
                font-size: 9px;
            }

            /* Mobilde dil değiştirici - SAĞ TARAFTA */
            .language-switcher {
                top: 35px;
                right: 5px;
            }

            .language-button {
                padding: 6px 12px;
                font-size: 12px;
                margin-top: auto;
                margin-left: auto;
            }

            .language-options {
                min-width: 120px;
            }

            .language-option {
                padding: 8px 15px;
                font-size: 13px;
            }

            .cta-button {
                font-size: .50rem;
            }

            .hero-section {
                background: linear-gradient(rgba(0, 0, 0, 0.7),
                        rgba(0, 0, 0, 0.5)),
                    url('https://www.gulsevinhukuk.com//assets/img/bg1.jpg');
                /*url('https://www.gulsevinhukuk.com/upload/product/product_2021-01-12_17-49-401.jpg'); */
                animation: backgroundAnimation 80s infinite alternate ease-in-out;
            }

            .service-button {
                font-size: 0.63rem;
            }

            .top-box i {
                font-size: 1.5rem;
            }

            .top-box {
                padding: 0.5rem;
            }

            .main-content {
                padding: 0.5rem 0;
            }

            .content-section {
                padding: 0.5rem;
                margin-bottom: 1.5rem;
            }

            .container {
                max-width: 100%;
                margin: 0 auto;
                padding: 0 20px;
            }

            header {
                position: fixed;
            }

            .top-boxes-hakkimizda {
                padding-top: 150px;

            }

            .top-boxes-tek {
                grid-template-columns: 1fr;
                /*repeat(kaç kutu olacak, 1fr)*/

            }

            .top-boxes-tek h2 {
                font-size: 100%;
            }

            img {
                width: 100%;
                height: 100%;
            }

            .top-boxes-cift {
                grid-template-columns: 2fr;
                /*repeat(kaç kutu olacak, 2fr)*/
            }
            img{
                width: 100%;
                height: 100%;
            }

        }