/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eb4924;
  padding: 10px 20px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav.main-nav ul li a {
  color: white;
  text-decoration: none;
}

.mobile-menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

footer {
  background-color: black;
  color: white;
  padding: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-around;
}

.footer-column {
  flex-basis: 30%;
}

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

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

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

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

/* Responsive Styles */
@media screen and (max-width: 768px) {
  nav.main-nav ul {
    display: none;
  }

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

  .footer-grid {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .footer-grid {
    flex-direction: column;
  }
}

/* General styles */

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-content: center;
}

.pricing-box {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.2s ease-in-out;
}

.pricing-box:hover {
  transform: scale(1.05);
}

.pricing-box h3 {
  color: #eb4924;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.pricing-box p.price {
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
}

.pricing-box ul li {
  margin: 10px 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
  }
}

/* Centering the pricing section */
.pricing {
  margin: 150px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing h2 {
  color: #eb4924;
  font-size: 2em;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  text-align: center;
  margin: 200px auto; /* 200px margin top and bottom */
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 600px; /* Max width for the section */
}

.contact img {
  margin-bottom: 20px;
}

.contact h2 {
  color: #eb4924;
  font-size: 2em;
  margin-bottom: 10px;
}

.contact h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.contact a {
  color: #333;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .contact {
    margin: 100px auto; /* Reduced margin for smaller screens */
  }
}

/* Ortak stiller */
section {
  text-align: center;
  margin: 200px auto; /* 200px margin top and bottom */
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 600px; /* Max width for the section */
}

section img {
  margin-bottom: 20px;
}

section h2 {
  color: #eb4924;
  font-size: 2em;
  margin-bottom: 10px;
}

section p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  section {
    margin: 100px auto; /* Reduced margin for smaller screens */
  }
}

/* about-us */

.about-us ul li {
  text-align: left;
}
