/* About Us Section */
.about-us {
  background-color: #822936; /* Maroon color from the image */
  padding: 200px 20px; /* Add padding for content spacing */
  text-align: center;
  color: white;
}

.about-us img {
  width: 300px; /* Adjust as needed */
  height: auto;
  margin-bottom: 1rem;
  margin-top: 30px;
}

.about-us h2 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 40px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-us p {
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: 2px;
  font-family: 'Nunito Sans', sans-serif;
}

/* Additional Content Sections */
.content-section {
  padding: 150px 50px; /* Increased vertical padding */
  text-align: center;
  background-image: url("../images/background.png"); /* Correct syntax with url() */
  background-size: cover; /* Optional: Makes the image cover the section */
  background-repeat: no-repeat; /* Optional: Prevents tiling */
  background-position: center; /* Optional: Centers the image */
  color: #333;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section p {
  font-size: 25px;
  color: #ffffff;
  font-family: 'Krub', sans-serif;
  max-width: 800px;
  letter-spacing: 5px;

  font-weight: 100;
  margin: 0 auto;
}

/* Additional ourstory Sections */
/* Our Story Section */
.ourstory {
  padding: 50px 20px;
  background-color: #822936;
  color: white;
  min-height: 400px;
}

.story-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* Increased from 20px to 40px for more spacing */
}
.story-left {
  flex: 1;
  text-align: center;
}

.story-left h2 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 15px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.story-left img {
  width: 400px;
  height: auto;
  margin-top:30px;

  border: 0px solid #fff;
  padding: 10px;
  background-color: #822936;
}

.story-right {
  flex: 2;
  padding-left: 20px;
}

.story-right p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  font-family: 'Krub', sans-serif; /* Ensure same font family */
}

.story-right a {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 700; /* Bolder weight than the default 400 of paragraphs */
  font-family: 'Krub', sans-serif; /* Match the font family */
}

.story-right t {
  font-size: 2.0rem;
  letter-spacing: 4px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 600; /* Bolder weight than the default 400 of paragraphs */
  font-family: 'Krub', sans-serif; /* Match the font family */
}

.story-right-divider{
  border: 0;
  height: 1px; /* Thin line */
  background-color: white; /* White color to match the text */
  margin-top: 20px;
  margin-bottom: 20px;
  width: 200px; /* Adjust width to match the approximate length of "OUR STORY" */
}

/* Story Divider Line */
.story-divider {
  margin-bottom: 40px;
  border: 0;
  height: 1px; /* Thin line */
  background-color: white; /* White color to match the text */
  width: 350px; /* Adjust width to match the approximate length of "OUR STORY" */
  margin: 5px auto; /* Center the line and add spacing */
}

/* Ensure navbar doesn't overlap */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #333;
  color: white;
}

/* Push content below navbar */
body {
  margin-top: 80px;
}


/* Existing styles remain unchanged */

/* What We Do Section */
/* What We Do Section */
.what-we-do {
  background-color: #000; /* black background */
  padding: 100px 40px;
  color: white;
}

.what-we-do h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}

.what-we-do .divider {
  border: 0;
  height: 1px;
  background-color: #777;
  margin: 15px auto 50px auto;
  width: 200px;
}

.what-we-do .content {
  display: flex;
  flex-direction: column;
  gap: 60px; /* spacing between rows */
  max-width: 1200px;
  margin: 0 auto;
}

.what-we-do .row {
  display: flex;
  align-items: flex-start; /* align items at top */
  gap: 40px;
}

.left-text {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  text-transform: lowercase;
  text-align: right; /* keep this right-aligned */
}

.left-text .big-text {
  font-size: 50px;
  margin: 0; /* tighter */
}

.right-text {
  flex: 2;
  text-align: left; /* Ensure left alignment */
}

.what-we-do .guide-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  text-align: left; /* Explicitly left-align */
}

.what-we-do ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Ensure left alignment */
}

.what-we-do ul li {
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  text-align: left; /* Ensure left alignment */
}

.what-we-do ul li::before {
  content: "•";
  color: #a64c57; /* maroon circle like in screenshot */
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Responsive */
@media (max-width: 900px) {
  .what-we-do .row {
    flex-direction: column;
  }
  
  .left-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .right-text {
    text-align: center;
  }
  
  .what-we-do ul li {
    text-align: left;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .what-we-do .content {
    flex-direction: column;
    text-align: center;
  }

  .left-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .left-text .big-text {
    margin: 30px 0;
  }

  .right-text {
    text-align: center;
  }

  .what-we-do ul li {
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}
