/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  color: #fff;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
}

.actions {
  display: flex;
  align-items: center;
}

.actions .link {
  margin-right: 15px;
  color: #ddd;
  text-decoration: none;
}

.btn {
  background: #00bcd4;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #0097a7;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(to right, #ff5722, #ff7043);
  color: #fff;
}

.hero-content {
  max-width: 480px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ffd740;
}

.hero-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.hero-image img {
  max-width: 220px;
}

/* BANNER */
.banner {
  background: #fce4ec;
  text-align: center;
  padding: 40px 20px;
  font-weight: bold;
  font-size: 1.4rem;
}

/* FEATURES */
.features {
  display: flex;
  gap: 20px;
  padding: 60px 40px;
  background: #fff3e0;
  justify-content: space-around;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: #ff5722;
}

/* INFO */
.info {
  background: #f5f5f5;
  padding: 60px 40px;
  text-align: center;
}

.info h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.info ul {
  margin: 20px auto;
  text-align: left;
  display: inline-block;
}

.info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ddd;
  padding: 50px 40px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #bbb;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
