/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
  }
  .large-image {
    width: 60%; 
    height: auto;
    object-fit: cover;
    margin-left: 30px;
    margin-top: 90px;
  }
.form-container {
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border: 2px solid #1c75bc;
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.price-form{
    margin-top: 100px;
}
.logo {
    width: 90%;
    margin-bottom: 20px;
}

.info-text {
    font-size: 18px;
    color: #4a6d8c;
    margin: 10px 0;
}

.warning-text {
    font-size: 16px;
    color: red;
    margin: 10px 0;
}

.form-group {
    margin-bottom: 40px;
    text-align: left;
}

label {
    font-size: 16px;
    color: #6e7787;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

select, input[type="text"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
} 

input[type="text"]:focus, input[type="tel"]:focus, select:focus {
    outline: none;
    border-color: #4a6d8c;
}

.submit-btn {
    background: linear-gradient(-180deg, rgb(124, 179, 66), rgb(106, 153, 56) 90%);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background-color: #EF7A1C;
}

.ribbon-top{
    position: absolute;
    top: -1.5%;
    left: 5%;
    width: 90%;
    height: 80px;
}

.fiyat-formu-title{
    position: relative;
    z-index: 1;
    color: #fff;
}
.form-info{
    font-size: 18px;
    color: #e40f0f;
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
    margin-top: -40px;
}
@media (max-width: 1048px) {
    .main-container {
      flex-direction: column;
      align-items: center;
    }
    .large-image {
        width: 90% !important;
        margin-right: 0;
        margin: 20px auto;
        border: 1.5px solid #1c75bc;
      }
    
      .form-container {
        width: 90% !important; 
        margin-top: 40px;
        border: 2px solid #1c75bc;
  
      }
   
  }

@media (max-width: 768px) {
    .main-container {
      flex-direction: column;
      align-items: center;
    }
  
    .large-image {
      width: 90% !important;
      margin-right: 0;
      margin: 20px auto;
      border: 2px solid #120a8f;
    }
  
    .form-container {
      width: 90% !important; 
      margin-top: 40px;
      border: 3px solid #120a8f; 
    }
    
  }