/* General Styling */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 15px;
}

.logo h4 {
  margin: 0;
  color: #8b0000; /* Maroon color from logo */
  font-weight: 600;
}

header nav a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  margin-left: 25px;
  transition: color 0.3s;
}

header nav a:hover {
  color: #8b0000;
}

/* Hero Section */
.hero {
  background-color: #8b0000; /* Maroon */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #8b0000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: #f0f0f0;
}

/* About Section */
.about {
  padding: 60px 0;
  background-color: #fff;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-content {
  flex: 1;
}

.map-preview {
  flex: 1;
  text-align: center;
}

.map-preview img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
  padding: 60px 0;
}

.features h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.card h4 {
  font-size: 1.3rem;
  margin-top: 0;
  color: #8b0000;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
