/* Genel stiller */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #E30613;
}

.mobile-menu-icon {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .mobile-menu-icon {
    display: block;
  }
}

/* İletişim Sayfası Stilleri */

.contact {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #E30613;
}

.section-subtitle {
  font-size: 16px;
  color: #777;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.info-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
}

.info-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 16px;
  color: #777;
  margin-bottom: 8px;
}
.info-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box h3 i {
  margin-right: 10px;
  color: #E30613;
}

.info-box p {
  font-size: 16px;
  color: #777;
  margin-bottom: 8px;
}

.info-box p i {
  margin-right: 8px;
  color: #E30613;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #E30613;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

.contact-map {
  width: 100%;
  height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
 background-color: #333;
 color: #fff;
 padding: 50px 0;
}

.footer-top {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-gap: 30px;
 margin-bottom: 30px;
}

.footer-column h3 {
 font-size: 24px;
 margin-bottom: 20px;
}

.footer-column ul {
 list-style-type: none;
 padding: 0;
}

.footer-column ul li {
 margin-bottom: 10px;
}

.footer-column ul li a {
 color: #fff;
 text-decoration: none;
}

.footer-column ul li i {
 margin-right: 10px;
}

.footer-bottom {
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-wrap: wrap;
}

.social-media a {
 display: inline-block;
 color: #fff;
 font-size: 24px;
 margin-right: 10px;
 transition: color 0.3s;
}

.social-media a:hover {
 color: #E30613;
}

.footer-bottom p {
 font-size: 14px;
}

@media (max-width: 768px) {
 .footer-top {
   grid-template-columns: 1fr;
   text-align: center;
 }

 .footer-bottom {
   justify-content: center;
 }

 .social-media {
   margin-bottom: 20px;
 }
}
