/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Top Bar */
.header-top {
  background: #f4f4f4;
  padding: 10px 0;
}

.header-phone {
  color: #003366;
  font-weight: bold;
  font-size: 1em;
}

/* Main Header */
header {
  background: #003366;
  color: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  font-size: 1.8em;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/3.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* About Section */
.about {
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
}

/* About Images - Maintain Aspect Ratio */
.about-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-images img {
  width: 100%;
  max-width: 45%;
  border-radius: 5px;
  height: auto;
}

/* Footer */
footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  nav ul {
    flex-direction: column;
    margin-top: 10px;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero {
    height: 300px;
  }
  
  .hero h2 {
    font-size: 2em;
  }
  
  .hero p {
    font-size: 1em;
  }
  
  .about-images {
    flex-direction: column;
  }
}
