* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header {
  background: #004d99;
  color: white;
  padding: 0.7rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.logo {
  height: 100px;
  width: auto;
}


header nav {
  float: right;
}

header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #e6f0ff;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta {
  background: #007bff;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.screenshots {
  background: white;
  padding: 40px 0;
  text-align: center;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.screenshot-grid img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.about-app {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.about-app h2 {
  margin-bottom: 15px;
}

.about-app p {
  font-size: 1.1rem;
  color: #333;
  margin: 10px 0;
}

.about-app small {
  font-size: 0.9rem;
  color: #666;
}


.contact {
  padding: 40px 0;
  background: #f4f9ff;
  text-align: center;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}


footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer a {
  color: #aaccff;
  text-decoration: none;
}
