:root {
  --primary-color: #1e3a8a;
  --accent-color: #f97316;
  --light-blue: #e8f0ff;
  --dark-bg: #2f2f2f;
  --text-dark: #1f2937;
}

/* Base */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #ffffff;
  color: var(--text-dark);
}

/* Headings */
h1, h2, h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}


h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

/* Header */
header {
  background-color: var(--light-blue);
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-weight: 700;
}

/* Navigation */
nav {
  background: var(--dark-bg);
  padding: 12px;
  text-align: center;
}

nav a {
  color: #ffffff;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
}
nav a:hover {
  color: var(--accent-color);
}


/* Sections */
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 40px auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--dark-bg);
  color: #ffffff;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product p {
  text-align: center;
  font-weight: 600;
  padding: 15px;
  margin: 0;
}

/* Map section */
.map-row {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.map-box {
  width: 50%;
}

.map-frame {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 6px;
}

/* Hero Section */
.hero {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #4b5563;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background-color: var(--primary-color);
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #162d6b;
}

.secondary-btn {
  background-color: var(--accent-color);
  color: #ffffff;
}

.secondary-btn:hover {
  background-color: #d45f0c;
}

/* Stats Section */
.stats {
  background: var(--primary-color);
  padding: 60px 20px;
  color: #ffffff;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.stat-box p {
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
  }

}

section:nth-child(even) {
  background: #f9fafb;
}












