/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
  color: #fff;
}

.header .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.header .logo img {
  width: 40px;
  margin-right: 10px;
}

.contact-links a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #eee;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #555;
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 280px;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #111;
}

.card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* Payment */
.payment {
  padding: 50px 20px;
  text-align: center;
}

.payment h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.payment-box {
  background: #fff;
  display: inline-block;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 320px;
  text-align: left;
}

.payment-box label {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  color: #444;
}

.payment-box input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  margin-top: 30px;
}
