/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  background-color: #eeeeF4;
  color: #000;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  font-weight: bold;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;
}

.logo {
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  background: url('landing.webp') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  padding: 0 1rem;
}

/* About Section */
.about {
  display: flex;
  padding: 4rem 2rem;
  background-color: #eeeef4;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-image {
  background: url('contact.webp') no-repeat center center/cover;
  width: 40%;
  height: 400px;
  margin: 1rem;
}

.about-text {
  width: 50%;
  padding: 2rem;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

/* Footer */
.footer {
  background: #eeeeF4;
  padding: 3rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  margin: 1rem;
}

.footer-section h4,
.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #000;
  text-decoration: underline;
}
