/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #1e2a38;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bcd4;
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, #00bcd4, #2196f3);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background-color: white;
  color: #2196f3;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e3f2fd;
}

/* Sections */
section {
  padding: 60px 40px;
  max-width: 800px;
  margin: auto;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e2a38;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

/* Contact */
#contact a {
  color: #2196f3;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #1e2a38;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
