* {
    font-family: 'Montserrat';
    font-weight: 400;
  }

body {
  margin: 0;
  padding: 0;
}
header {
  background: url('images/header-bg.jpg') no-repeat center center/cover;
  color: white;
  padding: 20px;
  min-height: 300px;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5em;
}
.logo {
  height: 100px;
}
.contact-info p {
  margin: 0;
}
.introduction, .contact, .reviews {
  padding: 20px;
  font-size: 1em;
}
.introduction{
    text-align: center;
    font-size: 1.5em;
}
.slider{
    display: flex;
    justify-content: center;
}
.slider-wrapper {
  overflow: hidden;
  width: 960px;
  display: flex;
  justify-content: left;
  margin: 20px 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slider-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 5px;
}

.contact h2{
    text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #0056b3;
}

.reviews {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}

.review-box {
  flex: 1 1 calc(20% - 15px);
  background: #f1f1f1;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-height: 100px;
  box-sizing: border-box;
}



footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

@media (max-width:1000px) {
    .slider-wrapper {
        width: 640px;
    }
}

@media (max-width:700px) {
    .slider-wrapper {
        width: 320px;
    }
}

@media (max-width:800px) {
    .header-content {
        flex-direction: column;
        align-items: start;
        row-gap: 1em;
    }
}
    
