* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #1f2937;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #292e7f;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d")
    center/cover no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 25px;
}

.hero-buttons .btn {
  padding: 12px 24px;
  border-radius: 6px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #4f46e5;
  color: #fff;
}

.secondary {
  background: #fff;
  color: #1f2937;
}

/* ABOUT */
.about {
  background: #e6f4d7;
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 12px;
}

/* CONTACT */
.contact {
  background: #e6f4d7;
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.contact-form button {
  padding: 12px;
  width: 100%;
  border: none;
  background: #4f46e5;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #292e7f; /* brand orange */
  white-space: nowrap;
}

#status { 
  margin-top: 15px; 
  font-size: 0.9em; 
  color: #555; 
}

/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .footer-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (min-width: 900px) {
  .logo img {
    height: 48px;
  }

  .logo-text {
    font-size: 1.25rem;
  }
}