
        /* Renkler ve tasarım */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4c430; /* Sarı */
            color: #000;
        }
        header {
            background-color: #000; /* Siyah */
            color: #f4c430;
            text-align: center;
            padding: 10px 0;
        }
        header img {
            max-width: 100px;
            margin-bottom: 10px;
        }
        main {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 20px;
        }
        .form-container {
            flex: 1;
            padding-right: 20px;
        }
        .image-container {
            flex: 1;
            max-width: 600px;
            width: 100%;
            height: auto;
        }
        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .image-container iframe {
            width: 100%;
            height: 450px;
            border: 0;
            border-radius: 10px;
        }
        form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
        }
        label {
            margin-bottom: 5px;
            font-weight: bold;
            width: 100%;
        }
        input, select, button, textarea {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box;
        }
        /* Tek satıra yerleştirilen form alanları */
        input, select, textarea {
            width: 48%; /* Form elemanları yan yana */
        }
        button {
            background-color: #000;
            color: #f4c430;
            border: none;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }
        button:hover {
            background-color: #333;
        }
        .alert {
            background-color: #ccffcc;
            color: #000;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #4CAF50;
            text-align: center;
        }
        .contact-section {
            text-align: center;
            margin-top: 20px;
            background-color: #000;
            padding: 20px;
            border-radius: 10px;
        }
        .contact-section h2 {
            color: #f4c430;
            font-size: 24px;
        }
        .contact-section a {
            text-decoration: none;
            color: #fff;
            font-size: 18px;
            margin: 10px;
            display: inline-block;
            transition: color 0.3s ease;
        }
        .contact-section a:hover {
            color: #f4c430;
        }
        .contact-section .whatsapp {
            font-weight: bold;
            border: 2px solid #f4c430;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .contact-section .whatsapp:hover {
            background-color: #f4c430;
            color: #000;
        }

        /* Mobil uyumlu görünüm için */
        @media (max-width: 768px) {
            main {
                flex-direction: column;
            }
            .form-container, .image-container {
                flex: none;
                width: 100%;
            }
            form {
                flex-direction: column;
            }
            input, select, textarea {
                width: 100%;
            }
            button {
                width: 100%;
            }
        }
   
   
   .social-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0077b5; /* Instagram için mavi */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px; /* Yazıyı küçük tutuyoruz */
}

.instagram-btn {
    background-color: #0077b5; /* Instagram mavi tonu */
}

.follow-btn {
    background-color: #0077b5; /* Instagram mavi tonu */
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp yeşil tonu */
}

.social-btn i {
    font-size: 16px; /* Küçük ikon boyutu */
    margin-right: 8px; /* İkon ile yazı arasındaki boşluk */
}

.instagram-btn:hover,
.follow-btn:hover,
.whatsapp-btn:hover {
    opacity: 0.8;



    text-align: center;
    margin-top: 10px;
    background-color: #333;
    padding: 10px 0;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 15px;
    transition: 0.3s;
}

.menu li a:hover {
    background-color: #f4c430;
    border-radius: 5px;
}
  .menu {
            display: flex;
            justify-content: center;
            gap: 20px;
            list-style: none;
            padding: 0;
        }
        .menu li {
            display: inline;
        }
        .menu a {
            text-decoration: none;
            padding: 10px 15px;
            background: #f4c430;
            color: #333;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .menu a:hover {
            background: #e0a800;
        }
        .content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .content-text {
            width: 50%;
        }
        .content-image {
            width: 50%;
        }
        .content-image img {
            width: 100%;
            border-radius: 10px;
        }
        

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    header {
        background-color: #f8f9fa;
        padding: 20px 0;
    }
    .menu {
        display: flex;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 10px 0;
        background: #222;
        margin: 0;
    }
    .menu li {
        display: inline;
    }
    .menu a {
        text-decoration: none;
        padding: 12px 20px;
        background: #f4c430;
        color: #333;
        border-radius: 8px;
        font-weight: bold;
        transition: background 0.3s, transform 0.2s;
    }
    .menu a:hover {
        background: #e0a800;
        transform: scale(1.05);
    }





