/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f6f6f6;
  color: #222;
  line-height: 1.7;
}

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, #7a0000, #a00000);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

header h1 {
  font-size: 38px;
  letter-spacing: 1px;
}

header p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.95;
}

/* ===== Hero Section ===== */
.hero {
  background: #fff;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hero img {
  width: 260px;
  height: 340px;        /* choose the height you want */
  object-fit: cover;   /* crops without distortion */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.hero-text {
  max-width: 520px;
}

.hero-text h2 {
  color: #7a0000;
  font-size: 28px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  color: #444;
}

/* ===== Buttons ===== */
.button {
  display: inline-block;
  margin-top: 20px;
  background: #7a0000;
  color: #fff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button:hover {
  background: #a00000;
  transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  color: #7a0000;
  font-size: 30px;
  margin-bottom: 40px;
}

/* ===== Cards ===== */
.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.value-box {
  background: #fff;
  width: 300px;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box h3 {
  color: #7a0000;
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #7a0000, #a00000);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ===== Forms ===== */
.container {
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

label {
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background: #7a0000;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 30px;
  cursor: pointer;
}

button:hover {
  background: #a00000;
}

/* ===== Footer ===== */
footer {
  background: #1c1c1c;
  color: #ccc;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header h1 { font-size: 30px; }
  .hero img { width: 220px; }
}