/* Basic page setup */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #006400;
    text-decoration: none;
}

/* Header styling */
header {
    background-color: #006400;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all 0.3s ease; 
}

.container {
    display: flex;
    justify-content: space-between; /* Align logo and nav on opposite sides */
    align-items: center;
    flex-wrap: wrap;
}


/* Center logo on mobile and position hamburger to the right */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center; /* Center items horizontally */
    }

    header img {
        margin: 0 auto 10px; /* Center logo and add bottom margin */
    }
}

header img {
    height: 150px;
    width: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Vertically align nav items with logo */
}

nav li {
    margin-left: 30px; 
}

/* Removed margin-left for smaller screens */
@media (max-width: 768px) {
    nav li {
        margin-left: 0; /* Remove margin for mobile screens */
    }
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em; /* Scale menu items on large screens */
    transition: all 0.3s ease;
}

nav a:hover {
    color: #f0fff0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Hamburger menu */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.hamburger i {
    font-size: 24px;
    color: white;
}

/* Responsive navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        align-self: flex-end;
        font-size: 30px;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #006400;
        padding: 10px;
    }

    .nav-links.open {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping if necessary */
        justify-content: center; /* Center the items */
        align-items: center;
        gap: 2px; /* Reduced gap between items */
    }

    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center the items */
        width: 100%;
        padding: 0;
        list-style: none;
        margin: 0;
        gap: 2px; /* Reduced gap between items */
    }

    nav a {
        font-size: 14px; /* Smaller font size to reduce overall width */
        padding: 4px 6px; /* Further reduced padding */
        white-space: nowrap; /* Prevent wrapping of text inside links */
    }

    .scrolled .nav-links.open {
        background-color: #228B22;
    }
}

/* Scroll effect */
header.shrink {
    padding: 10px 0;
}

header.shrink img {
    height: 80px;
}

.scrolled {
    background-color: #228B22;
}

.scrolled a {
    color: #f0fff0;
}


/* Footer styling */
footer {
    background-color: #228B22; 
    color: white;
    padding: 30px 0;
    position: relative; /* Ensure it doesn't interfere with fixed elements */
}

footer .container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

.footer-links, .contact-info, .copyright {
    margin-bottom: 20px; 
    color: inherit; 
}

/* Ensure footer links inherit white color and style */
.footer-links a {
    color: inherit; 
    margin: 0 10px; 
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Ensure all contact info text is explicitly white */
.contact-info {
    color: #006400 !important; /* Force white color */
}

.contact-info i {
    margin-right: 10px;
    color: #006400; /* Icon color */
}

.contact-info strong {
    color: white; /* Strong tag text color */
}

.contact-info p {
    color: #006400; /* Paragraph text color */
}

/* Copyright link styling */
.copyright a {
    color: #f0fff0; 
}

.copyright a:hover {
    text-decoration: underline;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column; 
    }

    .footer-links {
        display: flex; 
        flex-direction: column; 
        align-items: center;
    }

    .footer-links a {
        margin: 5px 0; 
    }

    .contact-info p {
        line-height: 1.8; 
    }
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: white;
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001; /* Increased z-index to ensure it's always on top */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}
.chat-icon i {
    font-size: 35px; /* Increase the font size of the icon */
  }
/* Chatbot Box */
.chatbot {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px; /* Increased width */
    height: 450px; /* Increased height */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Same z-index as chat icon */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.chat-header {
    background-color: #006400;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

#chatbot-iframe {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px; /* Adjust width as needed */
    height: 400px; /* Adjust height as needed */
    border: none; 
}

.chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.chat-messages {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat-messages li {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 5px;
}

.chat-messages .user {
    background-color: #f0fff0;
    text-align: right;
}

.chat-messages .bot {
    background-color: #e0e0e0;
    text-align: left;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ccc;
}

#user-input {
    width: calc(100% - 80px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-button {
    padding: 8px 15px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}
.chatbot.open {
    /* Adjust these values to your liking */
    width: 400px; /* Make it wider when open */
    height: 500px; /* Make it taller when open */
    /* You can add more styles here, like a different box-shadow or border */
}
/* About Section */
.about {
    background-color: #f0fff0; 
    padding: 40px 0;
  }
  
  .about-content {
    display: flex;
    align-items: center; 
  }
  
  .image-container {
    width: 40%; 
    margin-right: 30px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
  }
  
  .about-text {
    width: 60%; 
  }
  
  .about-text h2 {
    color: #006400; 
  }
  
  /* Coverage Section */
.coverage {
  padding: 40px 0;
  background-color: #f0fff0; 
}

.coverage .container { 
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.coverage h2, 
.coverage p {
  text-align: center; 
}

.coverage h2 {
  color: #006400;
}

.coverage ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center; 
  flex-wrap: wrap; 
  width: 80%; 
  margin: 0 auto; 
  gap: 35px;
}

.coverage li {
  width: 30%; 
  margin-bottom: 20px;
  text-align: center;
  display: flex;        
  flex-direction: column; 
  align-items: center;   
  padding: 20px;         /* Add padding to the list items */
  border: 2px solid #006400; /* Add a border to the list items */
  border-radius: 10px;    /* Add rounded corners to the list items */
  box-shadow: 0 2px 5px rgba(0, 100, 0, 0.1); /* Add a subtle shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Add transitions */
}

.coverage li:hover {
  transform: translateY(-5px); /* Slightly lift the item on hover */
  box-shadow: 0 4px 10px rgba(0, 100, 0, 0.2); /* Increase shadow on hover */
}

.coverage h3 {
  color: #006400;
}

.coverage .btn {
  display: block; 
  margin: 20px auto 0; 
}
/*hero video */
.hero-video {
    position: relative; 
    width: 100%;
    overflow: hidden; 
  }
  
  .hero-video-bg {
    width: 100%;
    height: auto; 
    display: block; 
    object-fit: cover; 
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
  }
  .cta-overlay h2 {
    font-size: 2em; /* Adjust this value as needed */
  }
  
  .cta-overlay p {
    font-size: 1.5em; /* Adjust this value as needed */
  }
  .cta-overlay .btn {
    font-size: 1em; /* Adjust this value as needed */
    padding: 15px 30px; /* Adjust these values as needed */
  }
  .cta-overlay > .container { 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  @media (max-width: 768px) { 
    .cta-overlay {
      align-items: flex-start; /* Align items to the top */
      padding: 15px; /* Add some padding */
    }
  
    .cta-overlay h2 {
      font-size: 1em; /* Smaller heading */
    }
  
    .cta-overlay p {
      font-size: 0.7em; /* Smaller text */
    }
  
    .cta-overlay .btn {
      font-size: 0.9em; /* Smaller button */
    }
  }
  /* Call to Action Section */
  .cta {
    background-color: #f0fff0; 
    color: #006400; 
    padding: 30px 0;
    text-align: center;
  }
  
  .cta h2 {
    margin-bottom: 20px;
  }
  .cta p {
    color: black; 
}
  
  .cta .container { 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  
  /* General button styles */
  .btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #228B22;
  }
 /* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column-reverse; /* Reverse the order */
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px; 
    }

    .image-container, .about-text {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .image-container {
        margin-bottom: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .coverage ul {
        display: flex;
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center;
        gap: 10px; /* Reduced gap between the coverage items */
        padding: 0;
        margin: 20px 0; /* Adjust the top and bottom margin for the coverage section */
    }

    .coverage ul li {
        width: 100%; /* Set full width for each coverage plan */
        text-align: center;
        padding: 10px 0; /* Reduce padding to minimize spacing between items */
        margin: 5px 0; /* Reduce the margin between each coverage plan */
    }

    .coverage h2, .coverage p {
        margin: 5px 0; /* Reduce margin on the headings and paragraphs */
    }

    .btn {
        margin-top: 15px; /* Slightly reduced space between button and content */
    }
}


 /* General Styles */
body {
    font-family: Arial, sans-serif; 
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Ensure all content in the container is centered */
}

h1, h2, p {
    text-align: center; /* Center align all titles and paragraphs */
}

a {
    color: #006400;
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #228B22;
}

/* Hero Section */
.about-hero {
    background-color: #f0fff0; /* Light Green */
    padding: 40px 0;
}

.about-hero h1 {
    color: #006400; /* Dark Green */
}

/* Other Sections */
.our-mission, 
.our-story, 
.our-values {
    padding: 20px 0;
    background-color: #f0fff0;
}

/* Ensure everything is centered and consistent */
.our-mission h2, 
.our-story h2, 
.our-values h2 {
    color: #006400;
    margin-bottom: 10px;
    text-align: center;
}

.our-mission p,
.our-story p,
.our-values p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.our-values ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.our-values li {
    margin-bottom: 10px;
}
.our-values li i {
    margin-right: 10px;
    font-size: 20px; /* Adjust the size as needed */
    color: #006400; /* Or any color that complements your design */
  }
/* Testimonials */
.testimonials {
    padding: 40px 0;
    background-color: #f0fff0;
  }
  
  .testimonials h2 {
    color: #006400;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Center the testimonials container */
  .testimonials { 
    display: flex; 
    flex-direction: column; /* Stack testimonials vertically by default */
    align-items: center; /* Center them horizontally */
  }
  
  .testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 80%; /* Adjust width as needed for mobile */
    transition: all 0.3s ease;
  }

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-style: italic;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column; /* Stack testimonials vertically on smaller screens */
    }

    .testimonial {
        width: 90%; /* Reduce the width to allow for some padding */
    }

    /* Ensure everything is centered on mobile as well */
    .about-content,
    .our-mission p,
    .our-story p,
    .our-values p {
        text-align: center;
    }

    .our-values ul {
        padding-left: 0;
    }
}
/* Contact Page Styles */

.contact {
  background-color: #f0fff0;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: flex-start;
}

.contact h1 {
  color: #006400;
  text-align: center;
  margin-bottom: 30px;
  width: 100%; /* Make the h1 take full width */
  align-self: center;  
}

.contact-content {
  display: flex;
  align-items: flex-start;  /* Align to the top */
  width: 90%;  /* Increased width */
  margin: 0 auto;
  gap: 30px;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 65%;
  transition: box-shadow 0.3s ease; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  
}
  
  .contact-form:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
  }
  
  .contact-form h2 {
    color: #006400;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
    width: 100%; /* Ensure form groups take up full width */
    text-align: left; /* Align labels to the left */
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  /* Style the required asterisk */
  .form-group label span { 
    color: red;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
  }
  
  /* Contact Details */
  .contact-details {
    width: 30%;
  }
  
  .contact-details h3 {
    color: #006400;
    margin-bottom: 15px;
  }
  
  .contact-details p {
    line-height: 1.8;
  }
  
  .contact-details i {
    margin-right: 10px;
    color: #006400;
  }

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column; 
        align-items: center; /* Center the form container */
    }
    
    .contact-form,
    .contact-details {
        width: 100%; /* Set full width */
        max-width: 500px; /* Limit the max width */
        margin: 20px auto;  /* Centering */
        padding: 20px; /* Add some padding */
        display: flex; 
        flex-direction: column; 
        align-items: center;
        box-sizing: border-box; /* Prevents padding from breaking layout */
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%; 
    }
}


  /* Main Section Styles */
.coverage-hero {
    background-color: #f0fff0; /* Light Green background */
    padding: 40px 20px;
    text-align: center;
}

.coverage-hero h1 {
    color: #006400; /* Dark Green for main heading */
    margin-bottom: 20px;
}

.coverage-hero p {
    font-size: 18px;
    color: #333;
}

.coverage-details {
    padding: 40px 0;
    background-color: #f0fff0;
}
.coverage-details h2 {
    color: #006400; /* Dark Green for the section heading */
    text-align: center;
    margin-bottom: 30px;
}

/*table css */
table {
    width: 100%;
    border-collapse: collapse; 
    margin-bottom: 20px;
  }
  
  th, td {
    border: 1px solid #ddd; 
    padding: 10px;
    text-align: center; 
  }
  
  th {
    background-color: #f0fff0; 
    font-weight: bold;
  }
  
  tbody tr:nth-child(even) {
    background-color: #f9f9f9; 
  }
  
  /* Highlight check marks */
  td:nth-child(n+2):before { /* Applies to columns 2 and onwards */
    content: ""; 
  }
  
  td:nth-child(n+2):has(> :first-child:checked)::before {
    content: "✓"; 
    color: green; 
    font-size: 1.2em; 
  }
  
  /* Responsive table - basic example */
  @media (max-width: 600px) {
    table {
      display: block;
      overflow-x: auto; 
    }
  }
/* Card Styles */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 30%; /* Adjust card width */
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: #006400; /* Dark Green for card headings */
    margin-bottom: 15px;
    text-align: center;
}

.card table {
    width: 100%;
    border-collapse: collapse;
}

.card table tr td {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.card table tr td:first-child {
    color: #333;
}

.card table tr td:last-child {
    text-align: right;
    color: #006400; /* Dark Green for prices */
}

.card table tr:last-child td {
    border-bottom: none; /* Remove border from last row */
}
/* Get a Quote CTA Section */
.get-a-quote-cta {
    background-color: #f0fff0; 
    color: #006400;
    padding: 30px 0;
    text-align: center;
  }
  
  .get-a-quote-cta .container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;    
  }
  
  .get-a-quote-cta h3 {
    margin-bottom: 10px;
    color: #006400; 
  }
  
  .get-a-quote-cta p {
    margin-bottom: 20px; 
  }
  
  .get-a-quote-cta .btn {
    /* ... your existing .btn styles ... */
    background-color: #006400; 
    color: white;
  }
  
  .get-a-quote-cta .btn:hover {
    background-color: #228B22; 
  }
  .get-a-quote-cta p {
    color: black; /* Set the paragraph text color to black */
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 80%; /* Full width for smaller screens */
    }
}
/* Shared styles for legal pages */
.privacy-policy, 
.terms-and-conditions,
.cookie-policy {
  background-color: #f0fff0; 
  padding: 40px 0;
  display: flex; 
  flex-direction: column;
  align-items: center;   
}

.privacy-policy .container,
.terms-and-conditions .container,
.cookie-policy .container {
  width: 80%;  
  display: flex; /* Enable flexbox on the container */
  flex-direction: column; /* Arrange items in a column */
  align-items: center; /* Center items horizontally */
}

/* Heading Styles - Centered */
.privacy-policy h1,
.terms-and-conditions h1,
.cookie-policy h1,
.privacy-policy h2,
.terms-and-conditions h2,
.cookie-policy h2 {
  color: #006400; 
  text-align: center;
  margin-bottom: 20px; 
}

/* Paragraph Styles - Centered with limited width for readability */
.privacy-policy p,
.terms-and-conditions p,
.cookie-policy p {
  max-width: 800px;
  margin: 0 auto 20px; 
  text-align: center;
}

/* List Styles - Left aligned for better readability */
.privacy-policy ul,
.terms-and-conditions ul,
.cookie-policy ul {
  list-style: none;
  padding-left: 20px; 
  text-align: left; 
  width: 100%; /* Make sure lists take full width of their container */
}

.privacy-policy li,
.terms-and-conditions li,
.cookie-policy li {
  margin-bottom: 10px;
}

/* Policy Section Styling - Centering */
.policy-section {
  display: flex;           
  flex-direction: column;    
  align-items: center;     
  margin-bottom: 30px;      
  width: 100%;             
}

/* Style for the unordered list in the Privacy Policy */
.privacy-policy ul,
.cookie-policy ul {
  list-style: none; 
  padding: 0; 
  margin-bottom: 20px; 
}

.privacy-policy li,
.cookie-policy li {
  margin-bottom: 10px; 
  text-align: center; 
}
.policy-section ul {
    list-style: none;
    padding-left: 20px; 
    text-align: center; /* Center align the list items */
  }
/* Style for the main title (h1) */
.privacy-policy h1,
.terms-and-conditions h1,
.cookie-policy h1 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px; 
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; 
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000; 
}

.cookie-banner .container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.cookie-banner p {
    margin: 0;
    margin-bottom: 20px; 
}

.cookie-banner-buttons {
    display: flex;
    justify-content: center;
    width: 100%; 
}

.cookie-banner button {
    background-color: #006400; 
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    margin: 0 5px;
    
}

.cookie-banner a {
    color: #f0fff0; 
    text-decoration: underline;
}
/* ... other CSS ... */ 

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column; 
        align-items: center;  
        max-width: 90%; 
        margin: 0 auto; 
    }

    .cookie-banner p {
        margin-bottom: 10px; 
        text-align: center;
    }

    .cookie-banner-buttons {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        width: auto; /* Allow buttons to take their natural width */
    }

    .cookie-banner button {
        width: auto; 
        padding: 10px 20px; 
        margin: 0 10px; 
    }
}


/* Admin Page Styles */
.hero {
    position: relative; 
    width: 100%; 
    height: 700px; /* Adjusted height for smaller hero */
  }
  
  .hero-image {
    width: 100%; 
    display: block; 
    height: 100%; /* Image takes full height of hero */
  }
  
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
  }
  
  .overlay-image {
    width: 300px; /* Scaled up overlay image */
    height: 100px; /* Scaled up overlay image */
  }
  
  .overlay-title {
    color: white; 
    font-size: 25px; 
    margin: 20px; 
  }
  /* Mobile Specific Styles */
@media (max-width: 768px) {
    .hero {
        height: 400px; /* Adjusted height for mobile */
    }

    .overlay-image {
        width: 200px; /* Scale down overlay image */
    }

    .overlay-title {
        font-size: 18px; /* Adjust font size for mobile */
        margin: 10px; /* Reduce margin for mobile */
    }
}
.admin-info {
    background-color: #f0fff0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Remove flex properties from the general .container */
.container {
    max-width: 1200px; 
    padding: 0 20px;
    margin: 0 auto; 
}

/* Add flex properties to a specific container within admin-info */
.admin-info .container { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 300px;
    height: auto;
}

p {
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #006400;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}