@media (min-width: 768px) {
.anacontainer {
	background: linear-gradient(to right, #15284b, #083995);
	margin-top:6%;
}

.anacontainers {
	background: linear-gradient(to right, #15284b, #083995);
}

.center-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
	padding: 30px 200px;
    background: linear-gradient(to right, #15284b, #083995);
}

.info-section {
  flex: 1;
}

.info-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.info-section p {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.info-section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.gold-text {
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFC107, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-section {
  flex: 1;
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

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

.offer-form label {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 8px;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 95%;
	padding: 14px 10px;
  font-size: 1rem;
    border: 1px solid white;
  background-color: #00000000;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border: 1px solid white;
  background-color: #00000000;
}

.offer-form textarea {
  resize: none;
}

input::placeholder {
  color: white; /* Placeholder rengini beyaz yapar */
  opacity: 1; /* Varsayılan opaklık değerini artırır */
}

textarea::placeholder {
  color: white; /* Placeholder rengini beyaz yapar */
  opacity: 1; /* Varsayılan opaklık değerini artırır */
}

.submit-button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #fff;
  background: #15284b00;
  border: 1px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}


.select-container {
  position: relative;
  display: inline-block;
  width: 98%;
}

.select-container select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;       
  border-radius: 8px;          
  background-color: #1a2e5b00;   
  color: #fff;                 
  cursor: pointer;
  /* Varsayılan ok simgesini kaldırıyoruz */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; 
  /* Tarayıcı farklılıklarını azaltır */
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover - Focus efektleri */
.select-container select:hover {
  border-color: #bbb;
}

.select-container select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Özel ok simgesi */
.select-container::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; 
  color: #fff; 
  font-size: 0.9rem;
}

.select-container select option {
  background-color: #fff; /* Açılan listede beyaz arka plan */
  color: #000;            /* Yazı rengi siyah */
  padding: 8px 12px;      /* Extra boşluk */
  font-size: 1rem;
  border-radius:10px;
}

/* Option hover yapmak istediğinizde (çok garantili değildir) */
.select-container select option:hover {
  background-color: ; 
}


/* Form Grup Stilleri */
.form-group {
  margin-bottom: 20px;
}

/* Input Container Stili */
.input-container {
  position: relative;
  width: 100%;
}

/* Input Alanı Stili */
.input-container input {
  width: 95%;
  padding: 14px 10px;
  font-size: 1rem;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 8px;
  outline: none;
}

.input-container input:focus {
  border-color: #007bff;
}

/* Label Stili */
.input-container label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input Boşken ve Focus Durumunda Label Hareketi */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
  top: -7px;
  left: 10px;
  font-size: 0.85rem;
  color: white;
}

.form-groups {
  margin-bottom: 20px;
  text-align: left;
  width:100%;
}

.adsoyadtel {
	display:flex;
	gap:20px;
}

.aracmarka {
	display:flex;
	gap:20px;
}

.plaka {
	display:flex;
	gap:20px;
}

.ililce {
	display:flex;
	gap:20px;
}

}



@media (max-width: 768px) {
.anacontainer {
	background: linear-gradient(to right, #15284b, #083995);
	margin-top:23%;
}

.anacontainers {
	background: linear-gradient(to right, #15284b, #083995);
}

.center-container {
	padding: 30px 30px;
    background: linear-gradient(to right, #15284b, #083995);
}

.info-section {
  flex: 1;
}

.info-section h1 {
	margin-top:-20px;
	font-size:2rem;
	margin-bottom: 10px;
	color: white;
}

.info-section p {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.info-section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.info-section img {
  width:100%;
  margin-bottom:30px;
}

.gold-text {
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFC107, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-section {
  flex: 1;
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

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

.form-groups  {
	margin-bottom:10px;
}

.offer-form label {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 8px;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 95%;
	padding: 14px 10px;
  font-size: 1rem;
    border: 1px solid white;
  background-color: #00000000;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border: 1px solid white;
  background-color: #00000000;
}

.offer-form textarea {
  resize: none;
}

input::placeholder {
  color: white; /* Placeholder rengini beyaz yapar */
  opacity: 1; /* Varsayılan opaklık değerini artırır */
}

textarea::placeholder {
  color: white; /* Placeholder rengini beyaz yapar */
  opacity: 1; /* Varsayılan opaklık değerini artırır */
}

.submit-button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #fff;
  background: #15284b00;
  border: 1px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}


.select-container {
  position: relative;
  display: inline-block;
  width: 98%;
}

.select-container select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;       
  border-radius: 8px;          
  background-color: #1a2e5b00;   
  color: #fff;                 
  cursor: pointer;
  /* Varsayılan ok simgesini kaldırıyoruz */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; 
  /* Tarayıcı farklılıklarını azaltır */
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover - Focus efektleri */
.select-container select:hover {
  border-color: #bbb;
}

.select-container select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Özel ok simgesi */
.select-container::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; 
  color: #fff; 
  font-size: 0.9rem;
}

.select-container select option {
  background-color: #fff; /* Açılan listede beyaz arka plan */
  color: #000;            /* Yazı rengi siyah */
  padding: 8px 12px;      /* Extra boşluk */
  font-size: 1rem;
  border-radius:10px;
}

/* Option hover yapmak istediğinizde (çok garantili değildir) */
.select-container select option:hover {
  background-color: ; 
}


/* Form Grup Stilleri */
.form-group {
  margin-bottom: 20px;
}

/* Input Container Stili */
.input-container {
  position: relative;
  width: 100%;
}

/* Input Alanı Stili */
.input-container input {
  width: 95%;
  padding: 14px 10px;
  font-size: 1rem;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 8px;
  outline: none;
}

.input-container input:focus {
  border-color: #007bff;
}

/* Label Stili */
.input-container label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input Boşken ve Focus Durumunda Label Hareketi */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
  top: -7px;
  left: 10px;
  font-size: 0.85rem;
  color: white;
}
}