.layout-container {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 115px;
    flex-direction: row; 
    background-color: #66B2B2;

}
.social-media{
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.info-section {
    color: white;
    padding-right: 50px;
    max-width: 47%;
    margin-left: auto;
    margin-right: auto;
}

.info-section h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.info-section h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bolder;
}

.info-section p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 2;
}

.details-container h3, .social-links h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.details-container ul, .social-links ul {
    list-style: none;
    padding: 0;
}
.details-container ul, .icon {
    list-style: none;
    padding: 0;
    margin-right: 10px;
}

.details-container li, .social-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
   
}

.icon-bullet {
    margin-right: 10px;
}

.social-links li a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.form-section {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    height: 10%;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    font-size: 14px;
    margin-top: 16px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    height: 100px;
}

form button {
    padding: 12px;
    background-color: #AC7B75;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10%;
    width: 34%;
    font-weight: bolder;
    height: 51px;
}

button:hover {
    background-color: #965D54;
}
@media (max-width: 600px) {
    .layout-container {
        flex-direction: column; 
        padding: 20px; 
    }

    .info-section {
        max-width: 100%; 
        padding-right: 0; 
        margin-left: 0; 
        margin-right: 0;
    }

    .form-section {
        width: 100%; 
        margin-top: 20px; 
    }
    form button{
        width: 70%;
    }
    
}

/* Orta ekranlar (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .layout-container {
        padding: 30px; /* Orta ekranlar için padding ayarı */
    }

    .info-section {
        max-width: 50%; /* Bilgi kısmının genişliğini artırın */
    }

    .info-section h2 {
        font-size: 13px; /* Orta ekranlar için font boyutu ayarı */
    }

    .info-section h1 {
        font-size: 46px; /* Orta ekranlar için başlık font boyutu */
    }

    .info-section p {
        font-size: 15px; /* Orta ekranlar için metin font boyutu */
    }

    .form-section {
        max-width: 100%; /* Formun genişliğini tam olarak kullanın */
        height:23%;
    }

    form button {
        width: 100%; /* Butonu tam genişlikte yapın */
    }
}