* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
  }
  
  body {
    background-image: url("https://images.trvl-media.com/place/6106246/0f6f9d49-fded-49e3-acd3-b254c023543a.jpg");
    background-size: cover;       /* Ensures the image fills the entire screen */
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
  }
  
  .card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px; 
    margin: 0 auto;
    padding: 40px;
  }
  
  

  
  /* Main Card Layout */
  .content-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }
  
  .card {
    background-color: #606f2b; /* Olive green background */
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  img {
    width: 600px; 
    max-width: none;
  
  }
  
  /* Split Columns */
  .left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .right-col {
    flex: 15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Typography styling */
  .subtitle {
    font-family: "Georgia", serif;
    font-style: italic;
    color: #f3ce56;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: -15px; /* Pulls the main title closer */
  }
  
  .main-title {
    font-size: 80px;
    font-weight: 900;
    text-transform: lowercase;
    line-height: 0.9;
    margin-bottom: 20px;
  }
  
  /* Images Styling */
  .main-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .main-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .description {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  
  /* Footer elements */
  .page-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    padding: 20px 50px;
  }
  
  .page-footer .logo {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  body {
    background:   background: linear-gradient(rgba(44, 64, 31, 0.75), rgba(44, 64, 31, 0.75));
  }
  
  .page-container {
    background: linear-gradient(rgba(44, 64, 31, 0.75), rgba(44, 64, 31, 0.75)),
      url("https://images.trvl-media.com/place/6106246/0f6f9d49-fded-49e3-acd3-b254c023543a.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 0 40px;
    font-family:'poppins'
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 25px 60px;
  
    border-bottom: 2px solid #f4f1de;
  }
  
  nav a {
    color: #f4f1de;
    margin-right: 30px;
  
    font-weight: 600;
  
    text-decoration: none;
  }
  
  nav a:hover {
    color: #dda15e;
  }
  
  .take-action {
    background: #606c38;
  
    padding: 12px 24px;
  
    border-radius: 30px;
  
    color: #f4f1de;
  
    cursor: pointer;
  }
  
  .take-action:hover {
    background: #7f8f45;
  }
  

  
  
  
  .trees {
    width: 300px;
    height: auto;
  }

  .active {
    color: #dda15e;
  }
  
