/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 15px 0;
}
header .logo {
  float: left;
  margin-left: 20px;
}
header nav ul {
  list-style: none;
  float: right;
}
header nav ul li {
  display: inline;
  margin: 0 15px;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* Hero */
.hero {
  background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}
.hero .btn {
  background: #ff6600;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
}

/* Sections */
.section {
  padding: 40px 0;
}
.section.bg-light {
  background: #f4f4f4;
}
.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
}
.card img {
  max-width: 100%;
  border-radius: 10px;
}
.card .btn {
  background: #007bff;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
}
form input, form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
form button {
  background: #28a745;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}