        body {
            background-color: rgb(255, 255, 255);
        }

        h1 {
            font-size: 40px;
            font-family: "Georgia", serif;
            color:rgb(0, 102, 204)
        }
        h2, h3, h4 {
            font-family: "Georgia", serif;
            color:rgb(0, 102, 204)
        }
        p {
            font-family: "Verdana", sans-serif;
            color: rgb(127, 81, 16);
        }
                .flex-container {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }
        tr {
                        font-family: "Verdana", sans-serif;
            color: rgb(127, 81, 16);
        }

        .flex-item {
            flex: 1; 
            padding: 10px;
        }
       .map-image {
        max-width: 600px; 
        width: 100%;     
        height: auto;
        border:3px solid black;
        display: block; 
        margin: 0 auto;
    }

        footer {
  text-align: center;     
  padding: 10px;      
  position: static;        
  bottom: 0;              
  width: 100%;           
  font-size: 10px;         
}
/* Floating Button (Trigger) */
#lang-trigger {
    position: fixed; /* Keep it in the same spot on the screen */
    top: 20px;
    right: 20px;
    z-index: 1000; /* Ensure it stays above other content */
    background-color: rgb(122, 122, 122); /* Your blue color */
    color: white;
    border: none;
    border-radius: 50%; /* Makes it circular */
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}
#lang-trigger:hover {
    background-color: rgb(0, 102, 204);
}

/* Modal Window (Pop-up) */
#language-modal {
    position: fixed;
    z-index: 2000; /* Must be higher than the trigger button */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Dark background overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-hidden {
    display: none !important; /* Key class to hide the modal */
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px; /* Keep the pop-up reasonably sized */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.modal-content button {
    background-color: rgb(0, 102, 204);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: #000;
}
/* --- Professional Table Styles for FINANCIAL DATA (Table 1) --- */

/* 1. Basic Structure and Collapse */
.rev-data-table1 {
    /* Sets the width of the table to 90% of the container */
    width: 60%; 
    /* Centers the table on the page */
    margin: 20px auto; 
    /* Ensures borders around cells merge cleanly */
    border-collapse: collapse; 
    /* Adds a thin, light gray border around the whole table */
    border: 1px solid #ccc;
    /* Uses the default site font, but maybe a slightly smaller size */
    font-size: 0.9em;
    float: left; 
    margin: 20px 20px 20px 0;
}

/* 2. Styling Table Cells (Data and Headers) */
.rev-data-table1 th, 
.rev-data-table1 td {
    /* Adds internal space around text */
    padding: 5px; 
    /* Adds a thin, light gray border to separate cells */
    border: 1px solid #ddd;
    /* Aligns text to the left for readability */
    text-align: left;
}

/* 3. Styling the Header Row (Making it stand out) */
.rev-data-table1 th {
    /* Darker background color for headers */
    background-color: #f2f2f2; 
    /* Makes header text bold and a bit darker */
    color: #333; 
    /* Ensures text is left */
        text-align: left;
}

/* 4. Adding "Zebra Stripes" for Readability */
.rev-data-table1 tr:nth-child(even) {
    /* Gives even rows a very light gray background for visual separation */
    background-color: #f9f9f9;
}

/* 5. Hover Effect (Optional, but adds polish) */
.rev-data-table1 tr:hover {
    /* Highlights the row when the user mouses over it */
    background-color: #e0f7fa; 
}
/* --- Fixes the overlapping issue by forcing the element to appear below floats --- */
.clear-fix-footer {
    /* The critical command: forces the element below any floating elements */
    clear: both; 
    /* Ensures the element takes full width */
    width: 100%; 
    /* Centers the text content */
    text-align: center;
    /* Adds some space above the footer */
    margin-top: 30px; 
}
.policy-container {
    max-width: 800px;  /* Stops it from stretching too far */
    margin-left: 20px; /* Keeps it off the very edge of the screen */
    text-align: left;  /* Forces the vibe to stay on the left */
    word-wrap: break-word; /* Prevents long URLs from breaking the layout */
}