:root {
    --background-color: #f4f4f4;
    --header-bg: #660000;
    --text-color: #333;
    --link-color: #660000;
    --link-hover-color: #990000;
    --button-bg: #660000;
    --button-hover-bg: #990000;
    --fact-card-bg: #fff;
    --newsletter-bg: #660000;
    --footer-bg: #660000;
    --footer-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F2E6E6;  /* Tuka background color */
    background-size: cover; /* Adjusts the image to cover the entire background */
    background-size: cover; /* Adjusts the image to cover the entire background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

header {
    background-color: var(--header-bg);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    height: 100%;
}

.logo-img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(15deg);
}

.logo-heading {
    margin: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
}

.menu {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.menu-list-item {
    position: relative;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Menu toggle styles */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    color: white;
    border-radius: 5px;
}

.nav-icon {
    width: 15px;
    height: 2px;
    background-color: white;
    display: block;
    margin: 5px auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-icon {
        display: block;
    }

    .menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        z-index: 1000;
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .menu-list-item {
        margin: 5px 0;
    }

    .menu-list-item a {
        color: white;
        font-size: 16px;
    }

    .menu-list-item:hover {
        background-color: #555;
    }

    .menu-toggle:checked + .menu-icon + .menu {
        display: block;
    }
}

.link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.link:hover::before {
    width: 100%;
}

.link:hover {
    color: #ffcc00;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-list-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.menu-list-item:nth-child(1) {
    animation-delay: 0.2s;
}

.menu-list-item:nth-child(2) {
    animation-delay: 0.4s;
}

.menu-list-item:nth-child(3) {
    animation-delay: 0.6s;
}

.menu-list-item:nth-child(4) {
    animation-delay: 0.8s;
}

.menu-list-item:nth-child(5) {
    animation-delay: 1s;
}

.menu-list-item:nth-child(6) {
    animation-delay: 1.2s;
}

.menu-list-item:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-list-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #660000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.submenu .link {
    padding: 8px 20px;
    display: block;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
}

.submenu .link:hover {
    background-color: #990000;
    color: #ffcc00;
}

main {
    padding: 120px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 100px 0;
    background-image: url('geotorism.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 2em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--button-bg);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-3px);
}

.collaboration {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

/* obj table */
.abstract, .objective {
    background-color: var(--fact-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abstract:hover, .objective:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.abstract h2, .objective h2 {
    font-size: 1.75em;
    margin-bottom: 15px;
    color: var(--link-color);
}

.abstract p, .objective p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.objective ul {
    list-style-type: none; /* Remove default bullets */
    margin-left: 0;
    padding-left: 0;
}

.objective ul li {
    position: relative;
    padding-left: 30px; /* Space for the custom bullet */
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.objective ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--link-color); /* Bullet color */
    border-radius: 50%; /* Circular bullet */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.objective ul li:hover {
    color: var(--link-color); /* Change text color on hover */
}
.objective ul li:hover::before {
    background-color: #c17171; /* Change bullet color on hover */
    transform: translateY(-50%) scale(1.2); /* Slightly enlarge the bullet on hover */
}

/* context tble */
.abstract, .context {
    background-color: var(--fact-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abstract:hover, .context:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.abstract h2, .context h2 {
    font-size: 1.75em;
    margin-bottom: 15px;
    color: var(--link-color);
}

.abstract p, .context p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}


.context ul {
    list-style-type: disc;
    margin-left: 20px;
}

.context ul li {
    margin-bottom: 10px;
}

---------------
/* context tble */
.abstract, .study {
    background-color: var(--fact-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abstract:hover, .study:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.abstract h2, .study h2 {
    font-size: 1.75em;
    margin-bottom: 15px;
    color: var(--link-color);
}

.abstract p, .study p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}


.study ul {
    list-style-type: disc;
    margin-left: 20px;
}

.study ul li {
    margin-bottom: 10px;
}


.flowchart {
    text-align: center;
    margin: 50px 0;
}

.flowchart img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.suggestions {
    margin: 50px 0;
}

.suggestions ul {
    list-style-type: disc;
    margin-left: 30px;
}

.suggestions ul li {
    margin-bottom: 10px;
}

.map-section {
    margin: 50px 0;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--link-color);
}

#map {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newsletter {
    background-color: var(--newsletter-bg);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.newsletter input {
    padding: 10px;
    margin-right: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #fff;
    color: var(--link-color);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter button:hover {
    background-color: #ffcc00;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.column {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin-bottom: 16px;
}

.card {
    background-color: var(--fact-card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    padding: 16px;
    text-align: center;
}

.container h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--link-color);
}

.container p {
    font-size: 14px;
    color: var(--text-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.visuallyhidden {
    position: absolute;
    z-index: -1;
    right: 0;
    opacity: 0;
}

.slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--fact-card-bg);
    padding: 20px;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 45%;
    height: auto;
    border-radius: 00px;
    object-fit: cover;
}

.slide-content {
    width: 50%;
    text-align: left;
}

.slide-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--link-color);
}

.slide-content p {
    font-size: 16px;
    color: var(--text-color);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.methodology {
    padding: 50px 20px;
    background-color: var(--background-color);
    text-align: center;
	border-radius: 10px;
}

.methodology h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--link-color);
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--fact-card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.methodology-title, .methodology-description, .methodology-image {
    width: 30%;
    text-align: center;
}

.methodology-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5px;
    object-fit: cover;
}

.methodology-title h2 {
    font-size: 24px;
    color: var(--link-color);
    margin-bottom: 10px;
}

.methodology-description p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.methodology-item:nth-child(even) .methodology-title {
    order: 3;
    text-align: right;
}

.methodology-item:nth-child(even) .methodology-description {
    order: 1;
    text-align: left;
}

.methodology-item:nth-child(even) .methodology-image {
    order: 2;
}

@media (max-width: 768px) {
    .methodology-item {
        flex-direction: column;
        text-align: center;
    }

    .methodology-title, .methodology-description, .methodology-image {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .methodology-item:nth-child(even) .methodology-title,
    .methodology-item:nth-child(even) .methodology-description,
    .methodology-item:nth-child(even) .methodology-image {
        order: initial;
        text-align: center;
    }
}
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .collaboration {
        flex-direction: column;
    }

    .abstract, .objective {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .column {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .methodology-item {
        flex-direction: column;
        text-align: center;
    }

    .methodology-title, .methodology-description, .methodology-image {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .methodology-item:nth-child(even) .methodology-title,
    .methodology-item:nth-child(even) .methodology-description,
    .methodology-item:nth-child(even) .methodology-image {
        order: initial;
        text-align: center;
    }

    .slide {
        flex-direction: column;
        text-align: center;
    }

    .slide img {
        width: 100%;
        margin-bottom: 20px;
    }

    .slide-content {
        width: 100%;
    }
}

.contact-us {
    background-color: #660000;
    padding: 40px 20px;
    color: w;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-us p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section {
    flex: 1;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-section:hover {
background: #F2E6E6;
    transform: translateY(-5px);
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #660000;
}

.contact-section p {
    font-size: 1rem;
    margin: 10px 0;
    opacity: 0.9;
}

.contact-section a {
    color: #ff6f61;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-us {
        padding: 20px 10px;
    }

    .contact-us h2 {
        font-size: 2rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 15px;
    }

    .contact-section h3 {
        font-size: 1.3rem;
    }

    .contact-section p {
        font-size: 0.9rem;
    }
}

/* Portfolio Section */
.portfolio {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.portfolio .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.portfolio .section-title p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Portfolio Filters */
#portfolio-flters {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#portfolio-flters li {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#portfolio-flters li.filter-active {
  background-color: #007bff;
  color: #fff;
}

#portfolio-flters li:hover {
  background-color: #007bff;
  color: #fff;
}

/* Portfolio Section */
.portfolio {
  padding: 4rem 0;
  background: #f8f9fa;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  position: absolute;
  bottom: 20px; /* Position from the bottom */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust for exact centering */
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
  gap: 10px; /* Add space between h3 and button */
}

.preview-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}

/* Filter Buttons */
.filters {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 8px 16px;
  margin: 0 5px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #660000; /* Deep red color */
  color: white;
}

.filter-btn:hover {
  background: #4d0000; /* Darker shade of red on hover */
  color: white;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  max-height: 80vh;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 16px;
  user-select: none;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}


/* Ensure all images have the same size */
.team-img {
    width: 200px; /* Set your desired width */
    height: 200px; /* Set your desired height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    display: block; /* Treat the image as a block element */
    margin: 0 auto; /* Center the image horizontally */
    border-radius: 10px; /* Optional: Makes the image circular */
}

/* Ensure the card container has consistent dimensions */
.card {
    width: 100%; /* Adjust as needed */
    text-align: center; /* Center text inside the card */
    padding: 15px; /* Add padding inside the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow effect */
    border-radius: 10px; /* Optional: Rounded corners */
    background-color: #fff; /* Optional: Background color */
}

/* Ensure columns have consistent spacing */
.column {
    flex: 1; /* Distribute space evenly */
    padding: 10px; /* Add spacing between columns */
    max-width: 25%; /* Ensure each column takes up 25% of the row */
}

/* Container for the team section */
#our-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden; /* Clip overflow */
    background-color: #f0f0f0; /* Add background color */
    border: 1px solid #ccc; /* Optional: Add a border */
}
/* Styling for the team section */
#team-section {
    border-radius: 15px;
    background-color: #f4f4f4;
    padding: 20px;
    border: 1px solid #ddd;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .column {
        flex: 1 1 50%; /* Two columns per row on smaller screens */
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .column {
        flex: 1 1 50%; /* Two columns per row on small screens */
        max-width: 50%;
    }
}


/* Map Output Section */
#final-map-output {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#final-map-output h1 {
    color: #333;
    margin-bottom: 10px;
}

#final-map-output p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.final-map-container {
    margin-top: 20px;
}

#final-map-output img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}