/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Helvetica, Arial;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-container {
  /* width: 100%; */
  max-width: 200px;
  height: auto;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}
header h1 {
  color: #2c3e50;
  font-size: 1.8rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #f2f2f2, #c6c6c6); /* light grey gradient */
  text-align: center;
  padding: 4rem 1rem;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background-color: #2c3e50;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #1a252f;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  gap: 2rem;
}
.feature {
  flex: 1;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}
.feature h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}
