
        /* GENEL AYARLAR */
        * {
             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
             box-sizing: border-box;
             margin: 0;
             padding: 0;
        }

        body {

        }

        header {
            background-color: #2c3e50;
            position: sticky;
            width: 100%;
            top: 0px;
            z-index: 20;

        }

        header h1 {
            margin: 0;
            text-align: center;
            color: white;
            font-size: 28px;
            padding: 10px;
        }

        /* MASAÜSTÜ MENÜ AYARLARI */
        nav {
            background-color: #34495e;
            /* position: relative; */
        }

        .menu-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu-links a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            font-weight: bold;
            transition: background 0.2s;
        }

        .menu-links a:hover {
            background-color: #1abc9c;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            padding: 10px 20px;
            width: 100%;
            text-align: right;
            box-sizing: border-box;
        }

        /* İÇERİK ALANI */
        .container {
            max-width: 1200px; /* 10 ürün yan yana daha rahat sığsın diye genişletildi */
            margin: 30px auto;
            padding: 10px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        h2 {
            color: #2c3e50;
            border-bottom: 2px solid #1abc9c;
            margin-top: 20px;
            padding-bottom: 10px;
        }

        /* ÜRÜN IZGARASI */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .product-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 6px;
        }

        .product-card h3 {
            font-size: 18px;
            margin: 12px 0 8px 0;
            color: #2c3e50;
        }

        .product-card p {
            font-size: 14px;
            color: #7f8c8d;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }

        .product-btn {
            display: inline-block;
            background-color: #1abc9c;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.2s;
        }

        .product-btn:hover {
            background-color: #16a085;
        }

  /* İletişim ve Harita Alanı */

        .contact-section {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 20px;
            text-align: center;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 32px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background-color: #bc9c22;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
}

        .contact-info {
            margin-bottom: 30px;
            font-size: 16px;
        }

        .contact-info p {
            margin: 10px 0;
        }

        .map-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        footer {
            background-color: #2c3e50;
            color: #777;
            text-align: center;
            padding: 15px;
            margin-top: 0px;
            font-size: 14px;
        }

        /* MOBİL EKRANLAR İÇİN CSS (max-width: 768px) */
        @media (max-width: 768px) {
            header h1 {
                font-size: 22px;
            }

            .menu-toggle {
                display: block;
            }

            .menu-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #34495e;
            }

            .menu-links a {
                text-align: center;
                border-top: 1px solid #2c3e50;
                padding: 15px 0;
            }

            .menu-links.active {
                display: flex;
            }

            .container {
                margin: 10px;
                padding: 15px;
            }
        }