.new-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .new-container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .new-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .new-container {
    width: 1170px;
  }
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
  width: 100%;
  place-items: center;
  margin: 120px 0;
}

@media (max-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #be9a67;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 380px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px 0 #be9a67;
}

/* Contact */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 100px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #be9a67;
}
/* Burası ek */
.content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 30px;
}

.contact-info {
  background-color: #be9a67;
  max-width: 460px;
}

@media screen and (max-width: 768px) {
  .contact-info {
    max-width: 100%;
  }
}

.phone-list {
  margin-bottom: 30px;
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.349);
  padding-bottom: 8px;
  color: white;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.social-icon:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }

  .contact-form h2 {
    font-size: 1.1rem;
  }
}
