/* Temel Ayarlar */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
            color: #333;
            line-height: 1.6;
        }

        /* Header ve Navigasyon */
        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #eee;
        }

        header a b {
            font-size: clamp(24px, 8vw, 45px); /* Ekran küçüldükçe yazı küçülür */
            color: #d35400;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap; /* Sığmazsa alt satıra geçer */
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #d35400;
        }

        /* Arama Çubuğu */
        .search-container {
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .search-container input {
            padding: 10px;
            width: 60%;
            max-width: 400px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px;
        }

        .search-container button {
            padding: 10px 20px;
            background: #d35400;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }

        /* Logo Alanı */
        .hero {
            text-align: center;
            padding: 20px;
        }

        .hero img {
            max-width: 100%; /* Resim ekrandan taşmaz */
            height: auto;
        }

        /* Ürün Kartları (Grid Sistemi) */
        h2 {
            text-align: center;
            color: #2c3e50;
            margin-top: 40px;
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Mobilde 1, Masaüstünde çoklu kolon */
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-item, .menü-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            padding-bottom: 15px;
            transition: transform 0.3s;
        }

        .menu-item:hover, .menü-item:hover {
            transform: translateY(-5px);
        }

        .menu-item img, .menü-item img {
            width: 100%;
            height: 200px;
            object-fit: cover; /* Resimleri bozmadan kutuya sığdırır */
        }

        .menu-item h3, .menü-item h3 {
            font-size: 18px;
            margin: 15px 10px 5px;
        }

        .menu-item p, .menü-item p {
            font-size: 14px;
            color: #777;
            padding: 0 10px;
        }

        .tag {
            background: #27ae60;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            margin-top: 10px;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        .footer a {
            color: #ff9f43;
            text-decoration: none;
        }

        /* Mobil Ayarlamalar */
        @media (max-width: 600px) {
            nav ul {
                gap: 10px;
            }
            nav ul li a {
                font-size: 13px;
            }
            .search-container input {
                width: 70%;
            }
        }

        İletişim sayfanı da inceledim. Burada özellikle form yapısı, harita (iframe) genişliği ve üst üste binmiş <body> ile <head> etiketleri gibi bazı teknik hatalar var. Mobilde haritanın ekrandan taşmaması ve formun kolayca doldurulabilmesi için gerekli düzenlemeleri yaptım.

Yine tek bir dosya olarak, CSS kodlarını içine gömerek hazırladım:

Güncellenmiş ve Mobil Uyumlu İletişim Sayfası
HTML
<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>İletişim - Selvi Pastanesi</title>
    <link rel="shortcut icon" href="img/birthday-cake.png" type="image/x-icon">
    <style>
        /* Temel Ayarlar */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
            color: #333;
        }

        /* Header ve Navigasyon */
        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #eee;
        }

        header a b {
            font-size: clamp(24px, 8vw, 45px);
            color: #d35400;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            font-size: 14px;
        }

        /* İletişim Bölümü Izgarası */
        .container {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .sayfa-baslik {
            text-align: center;
            color: #d35400;
            margin-bottom: 30px;
        }

        .iletisim-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Yan yana iki sütun */
            gap: 40px;
        }

        /* Bilgi Alanı */
        .iletisim-bilgi h3 {
            border-bottom: 2px solid #d35400;
            display: inline-block;
            padding-bottom: 5px;
        }

        .bilgi-item {
            margin-bottom: 15px;
        }

        /* Form Alanı */
        .iletisim-form {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box; /* Padding'in genişliği bozmasını engeller */
        }

        .gonder-btn {
            background: #d35400;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
        }

        /* Harita */
        .maps {
            margin-top: 40px;
            width: 100%;
        }

        .maps iframe {
            width: 100%;
            height: 400px;
            border: 0;
            border-radius: 10px;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

        footer a { color: #ff9f43; text-decoration: none; }

        /* MOBİL UYUMLULUK AYARLARI */
        @media (max-width: 768px) {
            .iletisim-grid {
                grid-template-columns: 1fr; /* Mobilde alt alta geçer */
            }
            
            header a b {
                font-size: 30px;
            }

            .maps iframe {
                height: 300px;
            }
        }
        

        /* Temel Ayarlar */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
            color: #333;
            line-height: 1.6;
        }

        /* Header ve Navigasyon */
        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #eee;
        }

        header a b {
            font-size: clamp(24px, 8vw, 45px);
            color: #d35400;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            font-size: 14px;
        }

        /* Hakkımızda Alanı (Flexbox Yapısı) */
        .about {
            width: 100%;
            padding: 50px 0;
        }

        .main {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 40px;
        }

        .main img {
            width: 450px;
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .about-text {
            flex: 1;
        }

        .about-text h1 {
            font-size: 40px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .about-text h5 {
            font-size: 22px;
            color: #d35400;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .about-text h5 span {
            color: #333;
        }

        .about-text p {
            font-size: 16px;
            margin-bottom: 30px;
            text-align: justify;
        }

        .about-text button {
            background: #d35400;
            color: white;
            border: 2px solid transparent;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .about-text button:hover {
            background: transparent;
            border-color: #d35400;
            color: #d35400;
        }

        /* MOBİL UYUMLULUK */
        @media (max-width: 850px) {
            .main {
                flex-direction: column; /* Mobilde her şeyi alt alta dizer */
                text-align: center;
            }

            .about-text h1 {
                font-size: 32px;
            }

            .main img {
                width: 100%;
                max-width: 400px;
                margin-bottom: 20px;
            }

            .about-text p {
                text-align: center;
            }
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
            color: #333;
            line-height: 1.6;
        }

        /* Header ve Navigasyon */
        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #eee;
        }

        header a b {
            font-size: clamp(24px, 8vw, 45px);
            color: #d35400;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            font-size: 14px;
        }

        /* Kurumsal İçerik Alanı */
        .kurumsal-container {
            padding: 50px 20px;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .kurumsal-content h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .kurumsal-content h2::after {
            content: '';
            width: 80px;
            height: 3px;
            background: #d35400;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .kurumsal-content p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 20px auto 40px;
        }

        /* Kartlar (Vizyon, Misyon, Kalite) */
        .ozellikler {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .kart {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 5px solid #d35400;
        }

        .kart:hover {
            transform: translateY(-10px);
        }

        .kart h3 {
            color: #d35400;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .kart p {
            font-size: 15px;
            color: #555;
            margin: 0;
            line-height: 1.5;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 60px;
        }

        footer a { color: #ff9f43; text-decoration: none; }

        /* MOBİL UYUMLULUK */
        @media (max-width: 600px) {
            .kurumsal-content h2 { font-size: 28px; }
            .kurumsal-content p { font-size: 16px; }
            .ozellikler { grid-template-columns: 1fr; }
        }
        /* Footer'ı aşağı sabitlemek için gerekli ana yapı */
        html, body {
            height: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fcfcfc;
            color: #333;
        }

        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #eee;
        }

        header a b {
            font-size: 45px;
            color: #d35400;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
        }

        /* İçerik alanını esnek yaparak footer'ı aşağı itiyoruz */
        .main-content {
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center; /* İkonları dikeyde ortalar */
            align-items: center;
            padding: 40px 20px;
        }

        h2 { font-size: 26px; color: #2c3e50; margin-bottom: 10px; }
        p { font-size: 19px; #666; margin-bottom: 40px; text-align: center; }

        /* İkonların Düzenlenmesi */
        .sosyal-medya-box {
            display: flex;
            justify-content: center;
            gap: 25px; /* Yan yana boşluk */
            flex-wrap: wrap;
        }

        .sosyal-medya-box a {
            font-size: 40px; /* İkon boyutu büyütüldü */
            color: #050403;
            transition: transform 0.3s, color 0.3s;
            text-decoration: none;
        }

        .sosyal-medya-box a:hover {
            transform: scale(1.4);
            color: #e67e22;
        }

        /* Sabit Footer */
        footer {
            flex-shrink: 0;
            background: #222;
            color: white;
            text-align: center;
            padding: 25px;
            width: 100%;
            box-sizing: border-box;
        }

        footer a { color: #ff9f43; text-decoration: none; }

        @media (max-width: 600px) {
            header a b { font-size: 30px; }
            .sosyal-medya-box a { font-size: 35px; }
        }

        /* Tüm navigasyon linklerinin alt çizgisini kaldırır */
nav ul li a {
    text-decoration: none;
}

/* Sadece logodaki (başlıktaki) çizgiyi kaldırmak için */
header a {
    text-decoration: none;
}