/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #000;
  background: #fff;
  padding-top: 100px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #000;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 100px;
  display: block;
}

/* Navigation Links */
.nav-links a {
  margin-left: 30px;
  font-size: 24px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Main Content Layout */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 0;
  flex-wrap: wrap;
}

/* Text Section */
.text-section {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
}

.text-section h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  padding: 10px 16px;
  border: 2px solid #000;
  font-weight: bold;
  margin-top: 20px;
}

.learn-more:hover {
  background: #000;
  color: #fff;
}

/* Image Section */
.image-section {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    }


.image-section img {
  flex: 1;
  max-width: 400px;
  width: 100%;
  height: auto;
  border: 1px solid #000;
}

.about-photo {
  text-align: center;
  margin-top: 20px;
}

.about-photo img {
  max-width: 100%;
  height: auto;
  border: 1px solid #000;
  border-radius: 8px;
}

.about-photo figcaption {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}
