body {
  font-family: 'Barlow', sans-serif;
  margin: 0;
  color: #E1081B;
  background-color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; /* Optional: Adds some breathing room on smaller screens */
}

header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
}

header h1 {
  font-weight: 800; /* Barlow Extra Bold */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #E1081B;
  font-weight: 400;
}

main.home {
  position: relative;
  background-color: #E1081B;
  color: white;
  overflow: hidden;
  padding-bottom: 100px; /* Make room for the curve */
}

main.home h2 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
}

main.home p {
  max-width: 400px;
  font-weight: 400;
  line-height: 1.6;
}

.logo {
  width: 400px;
  height: 400px;
  background: url('logo.png') no-repeat center;
  background-size: contain;
}

.hero-inner {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: block;
}

a {
  text-decoration: none;
  color: #E1081B;
}

main.content-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #000;  
}

main.content-page h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #E1081B;  
}

main.content-page p {
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

main.content-page h3 {
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 2rem;  
}

main.content-page h4 {
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.6rem;  
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

footer strong {
  font-weight: 700;
}
