/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    
  }
  
  /* Thematic Area */
  .climate-area {
    height: 80vh;
    background: url("images/tree.jpg") no-repeat center/cover;
  }
  
  .climate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 5%;
    color: rgb(250, 247, 247);
    font-size: 1.625rem;
    text-align: center;
  }
  
  .climate-container h1 {
    font-size: 3.4375rem;
  }
  
  .intro, .post-info, .post-content {
    max-width: 90%;
    margin: 2% auto;
    padding: 2%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  }
  
  .intro h2 {
    color: #2f4a64;
    font-size: 2.875rem;
    margin-bottom: 1rem;
  }
  
  .intro p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
  }
  .post-image img {
    width: 50%;
    position: relative;
    margin-left: 20%;/* Adjusted for smaller screens */
  }
  
  .post-info h1 {
    font-size: 2.5rem;
    color: #b49406;
    text-align: center;
    margin-bottom: 2%;
    border-bottom: 0.125rem solid #061b57;
    padding-bottom: 1rem;
  }
  
  .post-content h3.header-one {
    font-size: 2rem;
    color: #2980b9;
    margin-top: 2%;
    border-left: 0.25rem solid #79681d;
    padding-left: 1rem;
  }
  
  .post-content ul {
    list-style-type: none;
    padding: 0;
  }
  
  .post-content ul li {
    background-color: #ecf0f1;
    padding: 1%;
    margin: 1% 0;
    border-left: 0.25rem solid #d3c338;
  }
  
  .navigation-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 2rem auto;
  }
  
  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    color: white;
    background-color: #3498db;
    text-decoration: none;
    border-radius: 0.5rem;
  }
  
  .button:hover {
    background-color: #2980b9;
  }
  
  .prev {
    background-color: #e4e12f;
  }
  
  .prev:hover {
    background-color: #d3c338;
  }
  
  .next {
    background-color: #070be0;
  }
  
  .next:hover {
    background-color: #061b57;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 768px) {
    .intro, .post-info, .post-content {
      padding: 5%;
      margin: 5%;
    }
  
    .intro h2 {
      font-size: 2.5rem;
    }
  
    .post-info h1 {
      font-size: 2.125rem;
    }
  
    .post-content h3.header-one {
      font-size: 1.75rem;
      .footer {
        position: absolute;
        width: 100%;
        padding: 40px 0;
        background-color: #f7e11b;
        color: #333;
        font-family: Arial, sans-serif;
        box-sizing: border-box; /* Ensures padding is included within the element's size */
      }
      
      .footer .social {
        text-align: center;
        padding-bottom: 25px;
      }
      
      .footer .social a {
        font-size: 20px;
        color: #1C2663;
        margin: 0 10px;
        transition: 0.3s ease-in-out;
        text-decoration: none;
        display: inline-block;
        line-height: 42px;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        background-color: #f5f5f5;
        text-align: center;
        border: 1px solid #ccc;
      }
      
      .footer .social a:hover {
        transform: scale(1.2) translateY(-5px);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        background-color: #0d6b6b;
        color: #fff;
      }
      
      .footer ul {
        margin-top: 0;
        padding: 0;
        font-size: 16px;
        line-height: 1.6;
        list-style: none;
        text-align: center;
      }
      
      .footer ul li {
        display: inline-block;
        padding: 0 15px;
      }
      
      .footer ul li a {
        color: #474e57;
        text-decoration: none;
        transition: 0.3s ease-in-out;
        border-bottom: 2px solid transparent;
      }
      
      .footer ul li a:hover {
        border-bottom: 2px solid #061de0;
        transform: scale(1.1) translateY(-3px);
      }
      
      .footer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
        text-align: center;
        color: #197aa7;
      }
      
      .footer p:last-child {
        font-size: 12px;
        color: #555;
        margin-top: 5px;
      }
  