body {
  background: #fff;
  color: #333;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  font-size: 1.1em;
}

.nav {
  background: #fff;
  box-shadow: 0 3px 12px 0 #eee;
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.nav__logo img {
  height: 56px;
  padding: 10px 0;
}

.nav__menu a {
  display: inline-block;
  color: #0d3e65;
  font-weight: 600;
  text-decoration: none;
  margin: 0 12px;
  padding: 14px 0;
  transition: color 0.2s;
}

.nav__menu a:hover,
.nav__menu a:focus {
  color: #374151;
  text-decoration: underline;
}

.container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 1em;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  padding: 8px 12px;
  box-sizing: border-box;
}

button {
  background: #0d3e65;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  padding: 12px 24px;
  cursor: pointer;
}

button:hover, button:focus {
  background: #133254;
}

form {
  background: #fafbfc;
  border-radius: 8px;
  padding: 20px 24px 16px;
  margin: 24px auto;
  box-shadow: 0 2px 12px 0 #f2f2f2;
}

label {
  font-weight: 600;
  margin-bottom: 3px;
  display: block;
}

.carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
  background: #0d3e65;
  border-radius: 10px;
}

.carousel img {
  border-radius: 12px;
  height: 600px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}

.carousel img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .container { 
    max-width: 98%; 
  }
  .carousel img { 
    height: 400px;
  }
}

@media (max-width: 600px) {
  .hero__title { 
    font-size: 2em!important; 
  }
  .nav__content { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .nav__menu { 
    text-align: left; 
  }
  .carousel img { 
    height: 280px;
  }
}

footer {
  background: #f8f9fa;
  color: #333;
  padding: 35px 12px 26px 12px;
  text-align: center;
  border-top: 1px solid #eee;
}

a { 
  color:#0d3e65; 
}

a:hover { 
  text-decoration: underline; 
}
