* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #222;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

html {
  scroll-behavior: smooth;
}

.container2 {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.container2 h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.container2 p {
  font-size: 18px;
  line-height: 1.6;
  margin: 10px 0;
}

.logo img {
  height: 75px;
  width: 180px;
  display: block;
}

.header {
  background: #111;
  color: white;
  border-bottom: 4px solid #c00000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 90px;
}

.header nav a {
  color: white;
  margin-left: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color .2s;
}

.header nav a:hover {
  color: #c00000;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

p {
  font-size: 1.2rem;
}

.hero {
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url("/static/images/hero.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
}

.hero h2 {
  font-size: 3rem;
  max-width: 700px;
}

.red-line {
  width: 240px;
  height: 5px;
  background: #c00000;
  margin: 1.25rem 0;
  border-radius: 999px;
}

.btn {
  display: inline-block;
  background: #c00000;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  margin-top: 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all .2s ease;
}

.btn:hover {
  background: #a00000;
  transform: translateY(-2px);
}

.section {
  padding: 4rem 0;
}

.section.gray {
  background: #f5f5f5;
}

.section.dark {
  background: #111;
  color: white;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

.split div {
  text-align: center;
}

.split .red-line {
  margin: 1rem auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 1rem;
  border-top: 4px solid #c00000;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  width: fit-content;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.checklist li::before {
  content: "✓";
  color: green;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.contact-section {
  display: flex;
  justify-content: center;
}

#contact {
  background: #f5f5f5;
  padding: 6rem 0;
}

#contact h2 {
  margin-bottom: 25px;
}


@media (max-width: 768px) {

  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .split img {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto 0;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

}