/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f4f6fa;
  color: #333;
  padding-bottom: 50px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a73e8, #0c56c7);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.hero .contact {
  margin-bottom: 20px;
}
.hero a {
  color: #fff;
  text-decoration: underline;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #222;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #444;
  transform: translateY(-2px);
}

/* Section Cards */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
h2 {
  font-size: 1.6rem;
  color: #1a73e8;
  margin-bottom: 15px;
}
h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #222;
}
.date {
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}
ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
}
li {
  margin: 6px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0c56c7;
  color: #fff;
  margin-top: 30px;
  border-radius: 12px 12px 0 0;
}
