/**/

.contact-section {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #ddd;
  max-width: 95%;
  margin: 20px auto;
}
.contact-section h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.contact-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}
.working-hours h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}
.working-hours ul {
  list-style: none;
  padding: 0;
}
.working-hours li {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
}
.contact-options {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
.option:hover {
  background: #e6f7ff;
}
.icon {
  font-size: 20px;
}

/* About */

.about-section {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  max-width: 95%;
  margin: 30px auto;
}
.about-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.about-image img {
  max-width: 350px;
  border-radius: 8px;
  border: 2px solid #ccc;
}
.about-content h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}
.about-content h3 {
  font-size: 18px;
  margin-top: 20px;
  color: #444;
}
.about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}
.about-content ul {
  list-style: disc;
  padding-left: 20px;
  color: #555;
}
.about-content ul li {
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    margin: 0 auto 20px;
  }
}

/*Delivery*/

.delivery-section {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  max-width: 95%;
  margin: 30px auto;
}
.delivery-section h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: transform 0.2s;
}
.step:hover {
  transform: translateY(-3px);
}
.icon {
  font-size: 28px;
  color: #ff6600;
}
.text h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}
.text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}