    /* Basic Reset */
    body, h1, p, a, img {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Body Styles */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #e8f5e9; /* Light green background */
        color: #333;
    }
    
    /* Navigation Bar Styles */
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background-color: #4caf50; /* Green background */
        border-bottom: 3px solid #388e3c; /* Darker green border */
    }
    
    .nav-title h1 {
        font-size: 1.8em;
        color: #fff;
        margin: 0;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links {
        display: flex;
        gap: 20px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 1.1em;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background-color 0.3s, color 0.3s;
    }
    
    .nav-links a:hover {
        background-color: #388e3c; /* Darker green */
        color: #fff;
    }
    
    .nav-links a.active {
        background-color: #388e3c; /* Darker green */
        color: #fff;
    }
    
    .nav-logo img {
        height: 80px; /* Adjust this value to increase or decrease the logo size */
        width: 90px;  /* Maintains the aspect ratio of the logo */
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 40px; /* Space between logos */
    }
    
    
    
    /* Main Content Styles */
    .main-content {
        padding: 20px;
        background-color: #ffffff; /* White background for content */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Resource Sheets */
    .resource-sheet1 {
        margin-bottom: 20px;
    }
    
    .resource {
        font-size: 2.2em;
        color: #2e7d32; /* Dark green */
        margin-bottom: 10px;
        font-weight: bold;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .resource-p {
        font-size: 1.1em;
        color: #333;
        line-height: 1.8;
        margin-bottom: 15px;
        padding: 10px;
        border-left: 4px solid #4caf50; /* Green left border */
        background-color: #f1f8e9; /* Light green background for paragraphs */
        border-radius: 4px;
    }
    
    /* Image Grid Styles */
    .resource-sheet2 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .resource-image {
        width: 100%;
        height: auto;
        border: 2px solid #c8e6c9; /* Light green border */
        border-radius: 8px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .resource-image:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .image-wrapper {
        overflow: hidden;
        border-radius: 8px;
    }
    
    footer {
        background-color: #4caf50; /* Green background */
        color: #fff;
        padding: 10px;
        border-top: 3px solid #388e3c; /* Darker green border */
    }
    
    footer p {
        margin: 5px 0;
        font-size: 1.1em; /* Increase text size */
       
       
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
         color: navy;
          font-weight: bold; /* Make text bold */
    }
    
    footer a:hover {
        text-decoration: underline;
    }
    
    
    .impact-container {
        display: flex;
        margin-top: 20px;
        align-items: flex-start; /* Align items at the start (top) */
        gap: 20px; /* Space between the photo and text box */
        padding: 20px;
        background-color: #ffffff; /* White background */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    
    .impact-photo {
        display: flex;
        flex: 1;
        position: relative;
        width: 100%;
        max-width: 500px; /* Adjust the max-width to control the frame size */
        overflow: hidden; /* Hide overflow */
        margin: 0 auto; /* Center the photo frame */
    }
    .carousel-frame {
        display: flex;
         align-items: flex-start;
        transition: transform 0.5s ease-in-out;
        width: 100%; 
    }
    
    .carousel-image {
        width: 100%; /* Image takes up the full width of the frame */
        height: auto; /* Maintain aspect ratio */
        border-radius: 8px;
        object-fit: cover; /* Ensures the image covers the area */
    }
    
    /* Carousel Buttons */
    .carousel-btn {
        background-color: #4caf50; /* Green background */
        border: none;
        color: white;
        font-size: 1.5em;
        padding: 10px;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .left-btn {
        left: 10px;
    }
    
    .right-btn {
        right: 10px;
    }
    
    .carousel-btn:hover {
        background-color: #388e3c; /* Darker green */
    }
    
    .impact-message {
         flex: 2;
        width: 50%; /* Set width for the message box */
        margin-left: 20px;
    }
    
    .impact-text {
        font-size: 1.1em;
        color: #333;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .impact-list {
        list-style-type: disc;
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .impact-list li {
        font-size: 1.1em;
        color: #333;
    }
    
    .new-section {
        margin: 20px auto;
        padding: 20px;
        max-width: 1200px;
    }
    
    /* Image Gallery styling */
    .image-gallery {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    
    .gallery-image {
        width: 23%;
        height: auto; /* Maintain aspect ratio */
        border: 2px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-label {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin-top: 10px;
        color: #333;
    }
    
    /* Table Section styling */
    .table-section {
        margin-top: 20px;
    }
    
    .impact-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        color: #333;
    }
    
    .impact-table th, .impact-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }
    
    .impact-table th {
        background-color: #f4f4f4;
        font-weight: bold;
    }
    
    .impact-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .impact-table tr:hover {
        background-color: #f1f1f1;
    }
    
    /* Table Section styling */
    .table-section {
        margin-top: 20px;
        overflow-x: auto; /* Add horizontal scroll if needed */
    }
    
    .impact-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        color: #333;
    }
    
    .impact-table th, .impact-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
    }
    
    .impact-table th {
        background-color: #4caf50; /* Green background for headers */
        color: #fff; /* White text color */
        font-weight: bold;
    }
    
    .impact-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .impact-table tr:hover {
        background-color: #e8f5e9; /* Light green on hover */
    }
     .content-wrapper {
        background-color: #ffffff; /* Same background color as info-box */
        width: 70%; /* Same width as info-box */
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        margin: 0 auto; /* Center horizontally */
    }
    
    .main-content {
        font-family: 'Arial', sans-serif;
        color: #2c3e50;
    }
    
    .image-dialogue-container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
        justify-content: center; /* Center items horizontally in the container */
    }
    
    .image-dialogue-container.right-aligned {
        flex-direction: row-reverse; /* Switch order for right-aligned */
    }
    
    .image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        background-color: #ecf0f1;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .dialogue-box {
        background-color:  #4caf50;
        color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        max-width: 400px;
        font-size: 1.2em;
        position: relative;
        margin-left: 10px;
        word-wrap: break-word;
        display: flex;
        flex-direction: column;
    }
    
    .dialogue-box.right-aligned {
        margin-left: 0;
        margin-right: 10px;
    }
    
    .message-box {
        background-color: #ffffff;
        color: #2c3e50;
        padding: 10px;
        border-radius: 5px;
        font-size: 1em;
        font-weight: bold;
        margin-bottom: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);}
    
        .tab {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Ensures the heading and button are at the ends */
        padding: 10px;
    }
    
    .tab-title {
        font-size: 1.5em;
        color: #333;
        margin: 0;
    }
    
    .arrow-btn {
        background-color: transparent;
        border: none;
        font-size: 1.5em;
        color: #333;
        cursor: pointer;
        padding: 0;
    }
    
    .arrow-btn:hover {
        color: #4caf50; /* Change color on hover */
    }