/* Reset & Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.main-header {
  background-color: white;
}

.black-bar {
  height: 10px;
  background-color: black;
}

.header-content {
  text-align: center;
  padding: 30px 20px;
}

/* Navigation */
.navbar {
  background-color: #333;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Main Content */
.content-section {
  padding: 40px 20px;
  text-align: center;
}

.content-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
}

/* Highlight Section (Light Brown BG) */
.highlight-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e0c9a6;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.highlight-left {
  flex: 1;
  padding: 10px;
}

.highlight-right {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.rounded-img {
  max-width: 100%;
  border-radius: 15px;
}

/* Video Section */
.video-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 20px;
}

.video-container {
  flex: 1;
  min-width: 300px;
}

.video-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 30px 10px;
  margin-top: 40px;
}

footer .social-icons {
  margin-top: 10px;
}

footer a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1em;
}

footer a i {
  margin-right: 6px;
}

footer a:hover {
  color: #ccc;
}
