* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

header {
  background: #b30000;
  color: rgb(179, 232, 187);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: rgb(188, 236, 197);
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1549880338-65ddcdfd017b") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(197, 234, 204);
}

.hero-text {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: #ffcc00;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* Sections */
.section {
  padding: 60px 50px;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #b30000;
  font-size: 32px;
}

.section.light {
  background: #b2e6c8;
}

.center {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: rgb(184, 198, 228);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
  color: #b30000;
}

.card p {
  padding: 0 15px 20px;
}

/* Culture */
.culture-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}

.culture-box div {
  background: rgb(234, 202, 209);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #e2dbf3;
}

.contact-form button {
  padding: 12px;
  background: #b30000;
  color: rgb(187, 205, 197);
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #222;
  color: rgb(173, 157, 157);
  text-align: center;
  padding: 20px;
}
