:root {
    --blue: #1e0adf;
    --pink: #cf1193;
    --white: #fbf7f7;
    --grey: #f0f0f0;
    --dark-grey: #333;
    --light-grey: #e0e0e0; /* Added for back-to-shop button */
    --medium-grey: #c0c0c0; /* Added for back-to-shop button hover */
    --primary-color: #1e0adf; /* Alias for --blue */
    --secondary-color: #cf1193; /* Alias for --pink */
    --accent-color: #00bcd4; /* A new accent color for hover effects */
    --darker-blue: #150a8c; /* A slightly darker blue for contrast if needed */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-grey);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    transition: background-image 0.5s ease-in-out; /* Smooth transition for background image change */
  }
  
  /* NEW: Animated Background Slideshow */
  .background-slideshow {
    position: fixed; /* Fixes the background to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures it stays behind all content */
    background-size: cover;
    background-position: center center;
    animation: background-transition 20s infinite ease-in-out; /* 20s for full cycle, adjust as needed */
    /* List of background images to cycle through */
    background-image: url('images/background1.jpg'); /* First image */
  }
  
  @keyframes background-transition {
    0% { background-image: url('images/background1.jpg'); opacity: 1; }
    20% { background-image: url('images/background1.jpg'); opacity: 1; }
    25% { background-image: url('images/background2.jpg'); opacity: 1; } /* Fade to second image */
    45% { background-image: url('images/background2.jpg'); opacity: 1; }
    50% { background-image: url('images/background3.jpg'); opacity: 1; } /* Fade to third image */
    70% { background-image: url('images/background3.jpg'); opacity: 1; }
    75% { background-image: url('images/background1.jpg'); opacity: 1; } /* Fade back to first image */
    100% { background-image: url('images/background1.jpg'); opacity: 1; }
  }
  
  
  /* NEW HEADER STYLES */
  .main-header {
    /* Updated background with a more complex gradient and animation */
    background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 25%, var(--white) 50%, var(--pink) 75%, var(--blue) 100%);
    background-size: 400% 400%; /* Make the background larger than the element */
    animation: gradient-animation 15s ease infinite; /* Apply animation */
  
    color: var(--white);
    padding: 1.5rem 2rem; /* Increased padding */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    position: relative; /* For potential absolute positioning of elements */
    overflow: hidden; /* To contain any overflowing decorative elements */
    display: flex; /* Use flexbox for header content arrangement */
    align-items: center; /* Vertically align items */
    justify-content: space-between; /* Space out logo/text from contact info */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
  
  /* Keyframes for the gradient animation */
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  
  .main-header .header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Increased gap */
    flex-grow: 1; /* Allows this section to take available space */
    min-width: 250px; /* Ensure logo and text doesn't get too squished */
  }
  
  .main-header .header-logo {
    height: 120px; /* Adjusted logo size for main header */
    width: 120px; /* Ensure square for circular */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Ensure image fills circle */
    border: 3px solid var(--white); /* White border around logo */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow to transition */
  }
  
  .main-header .header-logo:hover {
    transform: scale(1.05) rotate(5deg); /* Subtle zoom and rotation effect on hover */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.5); /* White glow effect */
  }
  
  .main-header .header-text {
    text-align: left; /* Align text to the left */
    flex: 1; /* Allow text to take available space */
  }
  
  .main-header h1 {
    font-family: 'Montserrat', sans-serif; /* A more modern font */
    font-size: 3.2em; /* Larger, more impactful heading */
    margin-bottom: 0.2rem; /* Reduced margin for tighter spacing */
    letter-spacing: 2px; /* Add some letter spacing */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Text shadow for depth */
    color: var(--white); /* Ensure heading color is white */
  }
  
  .main-header p {
    font-size: 1.3em; /* Larger tagline */
    opacity: 0.9;
    color: var(--white); /* Ensure paragraph color is white */
  }
  
  /* Header Contact Info & Icons */
  .header-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Space between contact elements */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-left: 2rem; /* Push contact info to the right */
  }
  
  .header-contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    /* Animation for continuous loop */
    animation: slideAndPopLoop 4s ease-in-out infinite alternate; /* Changed to continuous loop */
    opacity: 0; /* Start hidden for animation */
  }
  
  /* Stagger animation for each link */
  .header-contact-info a:nth-child(1) {
    animation-delay: 0s; /* No initial delay for the first item */
  }
  
  .header-contact-info a:nth-child(2) {
    animation-delay: 0.5s; /* Delay for the second item to create a staggered effect */
  }
  
  /* New animation for sliding from left and subtle pop, now continuous */
  @keyframes slideAndPopLoop {
    0% {
      opacity: 0;
      transform: translateX(-50px) scale(0.9); /* Start slightly off-screen left, slightly smaller */
    }
    25% {
      opacity: 1;
      transform: translateX(0) scale(1); /* Slide to original position */
    }
    50% {
      opacity: 1;
      transform: translateX(0) scale(1); /* Hold at original position */
    }
    75% {
      opacity: 0;
      transform: translateX(50px) scale(0.9); /* Slide off-screen right, slightly smaller */
    }
    100% {
      opacity: 0;
      transform: translateX(-50px) scale(0.9); /* Reset to start for next loop (invisible) */
    }
  }
  
  
  .header-contact-info a i {
    margin-right: 0.5rem;
    font-size: 1.3em;
    transition: transform 0.3s ease;
  }
  
  .header-contact-info a:hover {
    color: var(--accent-color); /* New accent color for hover */
    transform: translateY(-2px);
  }
  
  .header-contact-info a:hover i {
    transform: scale(1.1);
  }
  
  /* END HEADER STYLES */
  
  
  /* NAVIGATION STYLES */
  nav {
    background-color: var(--pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1000;
  }
  
  /* Desktop Main Menu (now a single dropdown) */
  .main-menu {
    list-style: none;
    display: flex; /* Still flex, but will contain only one item */
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: flex-start;
  }
  
  /* Styles for the main desktop dropdown button */
  .desktop-menu-dropdown {
    position: relative;
  }
  
  .desktop-menu-dropdown > a {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .desktop-menu-dropdown > a:hover {
    background-color: var(--blue);
  }
  
  /* Styles for the content of the main desktop dropdown */
  .desktop-dropdown-content {
    display: none; /* Hidden by default */
    background-color: var(--blue); /* Changed from rgba to solid color */
    min-width: 220px; /* Wider for more content */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    position: absolute; /* Added position absolute for correct dropdown behavior */
  }
  
  .desktop-dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
  }
  
  .desktop-dropdown-content a:hover {
    background-color: var(--pink);
  }
  
  /* Show the main desktop dropdown on hover */
  .desktop-menu-dropdown:hover .desktop-dropdown-content {
    display: block;
  }
  
  /* Nested Dropdown for Services within the main desktop dropdown */
  .nested-dropdown {
    position: relative;
  }
  
  .nested-dropdown .nested-dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    left: 100%; /* Position to the right of the parent item */
    top: 0;
    background-color: var(--darker-blue); /* Changed from rgba to solid color */
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2; /* Higher z-index for nested dropdown */
    border-radius: 0 8px 8px 8px; /* Rounded bottom-right only */
    overflow: hidden;
  }
  
  .nested-dropdown:hover .nested-dropdown-content {
    display: block;
  }
  
  .nested-dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
  }
  
  .nested-dropdown-content a:hover {
    background-color: var(--pink);
  }
  
  
  /* Search Container */
  .search-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes search to the right */
  }
  
  .search-container input {
    padding: 7px 10px;
    border: none;
    border-radius: 4px 0 0 4px; /* Corrected border-radius */
    outline: none;
    width: 180px;
    font-size: 1rem;
  }
  
  .search-container button {
    padding: 7px 12px;
    border: none;
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .search-container button:hover {
    background-color: var(--dark-grey);
  }
  
  /* --- Mobile Sidebar Menu Styles --- */
  .menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2001;
    /* Always visible on desktop now, as it's the main menu toggle */
    /* display: none; /* Hidden by default, shown in media query */
  }
  
  .overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px; /* Fixed width for the sidebar */
    height: 100%;
    background-color: var(--pink); /* Pink background for the sidebar */
    flex-direction: column;
    justify-content: flex-start; /* Align items to the top */
    align-items: flex-start; /* Align list items to the left */
    z-index: 2000; /* High z-index to cover content partially */
    box-shadow: 2px 0 10px rgba(0,0,0,0.3); /* Shadow for depth */
    padding-top: 60px; /* Space for the close button */
  
    /* Enhanced animation properties */
    visibility: hidden; /* Hidden initially */
    opacity: 0; /* Start fully transparent */
    transform: translateX(-100%); /* Start off-screen */
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), /* Springy effect */
                opacity 0.5s ease-in-out,
                visibility 0.5s;
  }
  
  .overlay-menu.active {
    visibility: visible; /* Make visible */
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide into view */
  }
  
  .close-overlay-menu {
    position: absolute;
    top: 15px;
    right: 15px; /* Position close button within the sidebar */
    font-size: 2.5rem; /* Larger close icon */
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    /* Animated close button */
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .close-overlay-menu:hover {
    transform: rotate(90deg) scale(1.1); /* Spin and slightly scale on hover */
    color: var(--accent-color); /* Change color on hover */
  }
  
  .overlay-menu-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%; /* Take full width of sidebar */
    padding-left: 20px; /* Indent the main menu items */
  }
  
  .overlay-menu-list li {
    margin: 0.5rem 0; /* Slightly smaller margin for compact list */
  }
  
  .overlay-menu-list li a {
    display: block;
    padding: 12px 15px; /* Adjust padding for links */
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem; /* Font size for main menu items */
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px; /* Slightly smaller border-radius */
  }
  
  .overlay-menu-list li a:hover {
    background-color: var(--blue);
    color: var(--white);
  }
  
  /* Overlay Dropdown for Services (mobile sidebar) */
  .overlay-dropdown-content {
    display: none; /* Hidden by default */
    list-style: none;
    padding: 0.5rem 0;
    background-color: var(--darker-blue); /* Changed from rgba to solid color */
    border-radius: 4px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding-left: 15px; /* Indent sub-items further */
  }
  
  .overlay-dropdown-content li a {
    font-size: 1.1rem; /* Smaller font for sub-items */
    padding: 8px 15px;
  }
  
  .overlay-dropdown-content li a:hover {
    background-color: var(--pink);
  }
  
  /* Show dropdown content when parent li is hovered (or clicked on mobile via JS) */
  .overlay-dropdown:hover .overlay-dropdown-content {
    display: block;
  }
  
  /* END NAVIGATION STYLES */
  
  
  .slideshow-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
  .slide {
    display: none;
    position: relative; /* Needed for absolute positioning of text */
  }
  
  .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
    z-index: 10; /* Ensure buttons are above text */
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  .fade {
    animation: fade 1.5s ease-in-out;
  }
  
  @keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
  }
  
  /* SLIDESHOW ANIMATED TEXT STYLES */
  .slide-text {
    position: absolute;
    bottom: 20%; /* Adjust as needed */
    left: 5%; /* Start from left */
    right: 5%;
    color: var(--white);
    padding: 15px 25px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for readability */
    border-radius: 8px;
    opacity: 0; /* Hidden by default */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animation properties */
    text-align: center;
  }
  
  .slide-text h3 {
    font-size: 2em;
    margin-bottom: 0.5rem;
    color: var(--white); /* Ensure heading is white */
  }
  
  .slide-text p {
    font-size: 1.2em;
    color: var(--white); /* Ensure paragraph is white */
  }
  
  .slide.active .slide-text {
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide to original position */
  }
  
  
  /* General section styling for readability over background images */
  section {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for readability */
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  h2 {
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .services-frame {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .service-item {
    display: flex;
    background-color: var(--grey);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    /* Initial state: hidden and off-screen to the left */
    opacity: 0;
    transform: translateX(-100%);
    /* Smooth transition for the animation effect */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* Ensure the element is not 'stuck' if it's already on screen for some reason */
    will-change: opacity, transform; /* Optimize for animation */
  }
  
  /* This class will be added by JavaScript when the element is in view */
  .service-item.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered transition delays when the 'is-visible' class is added */
  .service-item:nth-child(1).is-visible { transition-delay: 0.1s; }
  .service-item:nth-child(2).is-visible { transition-delay: 0.3s; }
  .service-item:nth-child(3).is-visible { transition-delay: 0.5s; }
  .service-item:nth-child(4).is-visible { transition-delay: 0.7s; }
  .service-item:nth-child(5).is-visible { transition-delay: 0.9s; }
  .service-item:nth-child(6).is-visible { transition-delay: 1.1s; }
  .service-item:nth-child(7).is-visible { transition-delay: 1.3s; }
  
  
  .service-item img {
    width: 300px;
    height: 200px; /* Adjusted fixed height */
    object-fit: cover; /* Ensures image covers the area */
  }
  
  .service-text {
    padding: 1.5rem;
    flex: 1;
  }
  
  .service-text h3 {
    color: var(--blue);
    margin-bottom: 0.8rem; /* Adjusted margin */
    font-size: 1.6em; /* Adjusted font size */
  }
  
  .service-text p {
    line-height: 1.7; /* Adjusted line height for readability */
    text-align: justify; /* Justify text for cleaner look */
    margin-bottom: 1rem; /* Space between paragraphs */
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    padding: 0.8rem;
    background-color: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .contact-form button:hover {
    background-color: var(--blue);
  }
  
  /* Footer Styles */
  footer {
    background-color: var(--blue);
    color: var(--white);
    padding: 3rem 1rem 2rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    margin-bottom: 1rem;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  .footer-section p,
  .footer-section li,
  .footer-section a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--white);
  }
  
  .social-icons {
    margin-top: 1rem;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: var(--pink);
  }
  
  /* Footer Map Specific Styles */
  .footer-map {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content in this section */
  }
  
  .footer-map h3 {
    text-align: center;
  }
  
  .map-embed-container {
    width: 100%; /* Ensure container takes full width of its grid column */
    max-width: 300px; /* Max width for consistency across footer sections */
    height: 200px; /* Fixed height for the map */
    overflow: hidden; /* Hide any overflow */
    border-radius: 8px; /* Rounded corners for the map */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }
  
  .map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove default iframe border */
  }
  
  
  /* ------------------------------------------- */
  /* NEWS PAGE SPECIFIC STYLES */
  /* ------------------------------------------- */
  
  /* News-specific container styling (adjusts background for readability) */
  .container { /* Re-used for news content wrapper */
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for readability */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* News Article Styles */
  .news-article {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  /* Image styling: medium size */
  .news-article img {
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    margin-right: 15px;
  }
  
  /* Content */
  .news-content-container {
    flex: 1;
  }
  
  .news-title {
    font-size: 1.5em;
    margin-top: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* "New" and "Updated" stickers */
  .sticker {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 12px;
    color: #fff;
    margin-left: 10px;
    animation: popUp 0.5s ease-out;
  }
  
  .new-sticker {
    background-color: #28a745; /* Green for new */
    animation: bounce 1s infinite alternate;
  }
  
  .update-sticker {
    background-color: #ffc107; /* Amber for updated */
    animation: bounce 1.5s infinite alternate; /* Slightly longer animation for update */
  }
  
  /* Upload time style */
  .upload-time {
    font-size: 0.8em;
    color: #888;
    margin-top: 5px;
    display: block;
  }
  
  /* Animations for stickers */
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  
  @keyframes popUp {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  /* News content */
  .news-content {
    margin-top: 10px;
    color: #555;
  }
  
  /* Read More link styling */
  .read-more {
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
  }
  
  /* Buttons for editing/updating (already in global, but reinforcing specific colors) */
  .btn {
    background-color: var(--pink);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: var(--blue);
  }
  
  /* Form Styles */
  .form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #888;
    background-color: #fff;
    z-index: 999;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .form-popup label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      color: var(--dark-grey);
  }
  
  .form-popup input[type="text"],
  .form-popup textarea {
      width: calc(100% - 20px);
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
  }
  
  .form-popup input[type="file"] {
      margin-bottom: 15px;
  }
  
  .form-popup button[type="submit"] {
      width: 100%;
      padding: 10px;
      font-size: 1.1em;
  }
  
  .close-btn {
    background-color: var(--pink);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    transition: background-color 0.3s ease;
  }
  
  .close-btn:hover {
      background-color: var(--blue);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .news-article {
      flex-direction: column;
    }
    .news-article img {
      max-width: 100%;
      margin-bottom: 10px;
    }
  }
  
  /* ------------------------------------------- */
  /* PROJECTS PAGE SPECIFIC STYLES */
  /* ------------------------------------------- */
  
  /* This class is used for the main content wrapper on the Projects page */
  .projects-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* Project card styles */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    width: 100%;
    height: 180px; /* Reduced from 200px to 180px */
    object-fit: cover;
  }
  
  .project-card h3 {
    margin: 1rem;
    color: var(--blue);
  }
  
  .project-card p {
    margin: 0 1rem 1rem;
    color: var(--dark-grey);
  }
  
  .project-card a {
    display: inline-block;
    background-color: var(--pink); /* Initial color: #cf1193 */
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
  }
  
  .project-card a:hover {
    background-color: var(--blue); /* Hover color: #1e0adf */
    transform: scale(1.05);
  }
  
  /* ------------------------------------------- */
  /* SHOP PAGE SPECIFIC STYLES */
  /* ------------------------------------------- */
  
  .shop-main-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .shop-main-content h1 {
    text-align: center;
    color: var(--blue);
    margin-bottom: 2rem;
  }
  
  .shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: auto;
  }
  
  .product-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-card h3 {
    color: var(--blue);
    margin-top: 1rem;
  }
  
  .product-card p {
    font-weight: bold;
    margin: 0.5rem 0;
    color: var(--dark-grey);
  }
  
  .product-card a {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
  }
  
  .product-card a:hover {
    background-color: var(--blue);
    transform: scale(1.05);
  }
  /* General Body and Main Container Styling */
body {
    font-family: 'Montserrat', sans-serif; /* Ensuring consistent font */
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Light background for the page */
}

/* Header adjustments for general service pages if not already set */
.main-header {
    background-color: #0d47a1; /* Dark blue background for header */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.main-header .header-content {
    display: flex;
    align-items: center;
}

.main-header .header-logo {
    height: 60px; /* Adjust as needed */
    margin-right: 15px;
}

.main-header .header-text h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 700;
}

.main-header .header-text p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Navigation - Ensure consistency with main index page if possible */
nav {
    background-color: #1a237e; /* Slightly darker blue for nav */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Service Detail Section Styling */
.service-detail-section {
    padding: 40px 20px;
    max-width: 1200px; /* Max width for content */
    margin: 20px auto; /* Center content with some top/bottom margin */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* More prominent shadow */
}

.service-detail-section h2 {
    font-size: 2.8em; /* Larger, more impactful heading */
    color: #0d47a1; /* Dark blue color */
    text-align: center;
    margin-bottom: 40px; /* More space below heading */
    position: relative;
    padding-bottom: 15px; /* Space for underline effect */
}

.service-detail-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* Short underline */
    height: 4px;
    background-color: #ff9800; /* Accent color */
    border-radius: 2px;
}


.service-detail-content {
    display: flex; /* Use flexbox for image and text layout */
    flex-direction: column; /* Default to column for small screens */
    gap: 30px; /* Space between image and text */
    align-items: flex-start; /* Align items to the start */
}

.service-detail-content img {
    width: 100%; /* Full width on small screens */
    height: auto; /* Auto height to maintain aspect ratio */
    max-height: 400px; /* Max height to prevent excessively tall images on small screens */
    object-fit: cover; /* Cover the area, cropping if needed */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Soft shadow for image */
}

.service-detail-content div {
    /* This targets the div containing the paragraphs and list */
    flex-grow: 1; /* Allows this div to take up available space */
}

.service-detail-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Justify text for a clean block look */
}

.service-detail-content h3 {
    font-size: 1.8em;
    color: #0d47a1; /* Dark blue */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff9800; /* Underline effect */
    display: inline-block; /* Makes border-bottom only as wide as text */
    padding-bottom: 5px;
}

.service-detail-content ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
    padding-left: 30px; /* Space for custom bullet */
    position: relative;
}

.service-detail-content ul li::before {
    content: "\f00c"; /* FontAwesome checkmark icon */
    font-family: "Font Awesome 6 Free"; /* Make sure FontAwesome is loaded */
    font-weight: 900; /* Solid icon */
    color: #28a745; /* Green color for checkmark */
    position: absolute;
    left: 0;
    top: 0;
}

/* Back Button Styling */
.back-button {
    display: inline-block;
    background-color: #ff9800; /* Orange accent color */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px; /* Space above the button */
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: fit-content; /* Adjust width to content */
    margin-left: auto; /* Center button if it's the only block */
    margin-right: auto; /* Center button */
    display: block; /* Make it a block to center with auto margins */
}

.back-button:hover {
    background-color: #e68900; /* Darker orange on hover */
    transform: translateY(-2px);
}


/* Media Queries for Responsiveness */

/* For screens larger than 768px (tablets and desktops) */
@media (min-width: 769px) {
    .service-detail-content {
        flex-direction: row; /* Arrange image and text side by side */
        align-items: flex-start; /* Align content to the top */
    }

    .service-detail-content img {
        width: 45%; /* Image takes about half the width */
        max-width: 500px; /* Prevent image from getting too large */
        height: auto; /* Let height adjust to width */
        margin-right: 40px; /* Space between image and text */
        margin-bottom: 0; /* Remove bottom margin if stacking */
    }

    .service-detail-content div {
        /* No specific width needed, flex-grow handles it */
    }

    .service-detail-section h2 {
        font-size: 3.2em; /* Even larger heading on big screens */
    }
}

/* For very small screens (phones) */
@media (max-width: 480px) {
    .service-detail-section {
        padding: 20px 15px; /* Less padding on very small screens */
        margin: 10px auto;
    }

    .service-detail-section h2 {
        font-size: 2em; /* Smaller heading for phones */
        margin-bottom: 25px;
    }

    .service-detail-content p {
        font-size: 1em; /* Slightly smaller paragraph text */
    }

    .service-detail-content h3 {
        font-size: 1.5em; /* Smaller sub-heading */
    }

    .service-detail-content ul li {
        font-size: 0.95em; /* Smaller list item text */
        padding-left: 25px;
    }

    .service-detail-content ul li::before {
        font-size: 0.9em; /* Adjust checkmark size */
    }

    .back-button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-top: 20px;
    }
}
  /* ------------------------------------------- */
  /* CAREER PAGE SPECIFIC STYLES */
  /* ------------------------------------------- */
  
  .career-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .career-intro {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1em;
    color: var(--dark-grey);
  }
  
  .job-listing {
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .job-listing h3 {
    color: var(--blue);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.6em;
  }
  
  .job-listing .location-type {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .job-listing ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
    color: var(--dark-grey);
  }
  
  .job-listing ul li {
    margin-bottom: 0.5rem;
  }
  
  .job-listing .apply-button {
    display: inline-block;
    background-color: var(--pink);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
  }
  
  .job-listing .apply-button:hover {
    background-color: var(--blue);
    transform: scale(1.05);
  }
  .service-detail-section .service-detail-content img {
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
    height: 400px; /* Increase the height as needed */
    display: block; /* Prevents extra space below the image */
    margin-bottom: 20px; /* Add some space below the image */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    object-fit: cover; /* Ensures the image covers the height without distortion, cropping if necessary */
   }
   
   .service-detail-section .service-detail-content > div {
    flex-grow: 1; /* Allow text to take remaining space */
    padding-left: 30px; /* Add some space between the image and text */
   }
   
   .service-detail-section .service-detail-content {
    display: flex; /* Arrange image and text side by side on larger screens */
    flex-direction: column; /* Stack on smaller screens */
    align-items: flex-start; /* Align items to the start */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
   }
   
   @media (min-width: 769px) {
    .service-detail-section .service-detail-content {
     flex-direction: row; /* Display side by side on larger screens */
     align-items: flex-start;
    }
   
    .service-detail-section .service-detail-content img {
     max-width: 50%; /* Adjust image width for side-by-side layout */
     height: auto; /* Adjust height based on width */
     margin-right: 30px;
     margin-bottom: 0;
    }
   }
  /* ------------------------------------------- */
  /* SERVICE DETAIL PAGES SPECIFIC STYLES */
  /* ------------------------------------------- */
  
  .service-detail-section {
    padding: 2rem;
    max-width: 1000px; /* Slightly narrower for focused content */
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .service-detail-section h2 {
    color: var(--blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5em;
  }
  
  .service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .service-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .service-detail-content p {
    line-height: 1.6;
    color: var(--dark-grey);
    text-align: justify;
  }
  
  .service-detail-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1rem;
    color: var(--dark-grey);
  }
  
  .back-button {
    display: inline-block;
    background-color: var(--pink);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .back-button:hover {
    background-color: var(--blue);
    transform: scale(1.05);
  }
  
  @media (min-width: 768px) {
    .service-detail-content {
      flex-direction: row;
      align-items: flex-start;
    }
    .service-detail-content img {
      width: 40%; /* Adjust image width on larger screens */
      margin-right: 2rem;
    }
  }
  
  /* --- Mission and Members Sections Styles --- */
  .mission-content {
    margin-top: 2rem;
    padding: 2.5rem; /* Increased padding */
    background-color: var(--white);
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* More prominent shadow */
  }
  
  .mission-content h3 {
    color: var(--pink);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8em;
  }
  
  .mission-content p {
    max-width: 900px; /* Wider text block */
    margin: 0.5rem auto 0; /* Center paragraph */
    font-size: 1.1em; /* Slightly larger font */
    color: #444;
    line-height: 1.8; /* Increased line height for better readability */
    text-align: justify; /* Justify text for a cleaner block look */
  }
  
  .members-section {
    margin-top: 4rem; /* More space from mission */
    padding: 2.5rem; /* Increased padding */
    background-color: var(--white);
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* More prominent shadow */
  }
  
  .members-section h3 {
    color: var(--blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8em;
  }
  
  .members-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-grey);
  }
  
  .member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjust min-width for better spacing */
    gap: 2.5rem; /* Slightly increased gap for more space between cards */
    justify-content: center;
    margin-top: 2rem; /* Space from section intro text */
  }
  
  .member-card {
    background-color: var(--grey);
    border-radius: 12px; /* Consistent rounding */
    padding: 1.5rem; /* Increased padding */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Stronger shadow on card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover */
    /* Animation properties - removed initial opacity/transform from here */
    animation: fadeInUp 0.8s ease-out forwards; /* Apply animation */
  }
  
  .member-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 8px 16px rgba(0,0,0,0.25); /* More pronounced shadow on hover */
  }
  
  .member-card img {
    width: 140px; /* Slightly larger image */
    height: 140px;
    border-radius: 50%; /* Circular images */
    object-fit: cover;
    border: 4px solid var(--pink); /* Thicker border */
    margin-bottom: 1.2rem; /* Increased margin-bottom for more space below image */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Shadow on image */
  }
  
  .member-card h4 {
    font-size: 1.4em; /* Larger name font */
    margin-bottom: 0.5rem;
  }
  
  .member-card p {
    font-size: 1em; /* Slightly larger role font */
    color: #555;
  }
  
  /* Keyframes for fadeInUp animation */
  @keyframes fadeInUp {
    from {
      opacity: 0.5; /* Start partially visible */
      transform: translateY(10px); /* Start slightly below */
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Staggered animation delays for each member card */
  .member-card:nth-child(1) { animation-delay: 0.1s; }
  .member-card:nth-child(2) { animation-delay: 0.2s; }
  .member-card:nth-child(3) { animation-delay: 0.3s; }
  .member-card:nth-child(4) { animation-delay: 0.4s; }
  /* If more members were added, you'd continue this pattern */
  
  /* Product Detail Page Specific Styles (Enhanced) */
  .product-detail-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    background-color: var(--white);
    border-radius: 12px; /* More rounded */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Softer, more prominent shadow */
    color: var(--dark-grey);
  }
  
  .product-detail-card {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 2.5rem; /* Increased gap for better spacing */
    align-items: flex-start; /* Align items to the top */
    justify-content: center; /* Center content horizontally */
    margin-bottom: 2rem;
  }
  
  .product-detail-card img {
    flex: 1 1 350px; /* Adjust flex basis for image, min-width 350px */
    max-width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: contain; /* Ensures the whole image is visible, no cropping */
    background-color: var(--light-grey); /* Light background for the image area */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow around image */
    padding: 15px; /* Padding inside the image container */
  }
  
  .product-info {
    flex: 2 1 400px; /* Adjust flex basis for info, min-width 400px */
    padding: 1rem;
  }
  
  .product-info h1 {
    color: var(--primary-color);
    font-size: 3em; /* Larger product title */
    margin-bottom: 1rem;
    text-align: left; /* Align to left */
  }
  
  .product-info .price {
    font-size: 2.5em; /* Larger price */
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .product-info .description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .product-info h3 {
    color: var(--primary-color); /* Primary color for features heading */
    font-size: 1.8em;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .product-info ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .product-info ul li {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 0.8rem;
    padding-left: 25px; /* Space for custom bullet */
    position: relative;
    line-height: 1.4;
  }
  
  .product-info ul li::before {
    content: "\2022"; /* Unicode bullet point */
    color: var(--secondary-color); /* Pink bullet point */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
  }
  
  .product-info .availability {
    font-size: 1.1em;
    font-weight: bold;
    color: #28a745; /* Green for in stock */
    margin-bottom: 2rem;
  }
  
  .add-to-cart-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--darker-blue)); /* Gradient button */
    color: var(--white);
    padding: 1.2rem 2.5rem; /* Larger padding */
    border: none;
    border-radius: 10px; /* More rounded */
    font-size: 1.4em; /* Larger font */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for all effects */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }
  
  .add-to-cart-btn:hover {
    background: linear-gradient(45deg, var(--pink), var(--secondary-color)); /* Pinker gradient on hover */
    transform: translateY(-5px) scale(1.02); /* Lift and slight scale */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Stronger shadow */
  }
  
  /* General back button style, also used for back to shop */
  .back-button {
    display: inline-block;
    background-color: var(--light-grey);
    color: var(--dark-grey);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .back-button:hover {
    background-color: var(--medium-grey);
    transform: scale(1.05);
  }
  
  /* Responsive adjustments for product detail page */
  @media (max-width: 768px) {
    .product-detail-card {
      flex-direction: column;
      align-items: center;
    }
    .product-detail-card img,
    .product-info {
      flex: 1 1 100%;
      max-width: 100%; /* Ensure they take full width */
    }
    .product-info h1,
    .product-info .price,
    .product-info h3,
    .product-info .availability {
      text-align: center; /* Center text on small screens */
    }
    .product-info ul {
      text-align: left; /* Keep list left aligned */
      margin-left: 20px; /* Indent lists for readability */
    }
    .add-to-cart-btn {
      width: 100%; /* Full width button on small screens */
      padding: 1rem 1.5rem; /* Adjust padding */
      font-size: 1.2em; /* Adjust font size */
    }
  }
  
  /* NEW: Payment Modal Styles */
  .payment-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Darker overlay for better focus */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .payment-modal-content {
    background: linear-gradient(145deg, var(--white) 0%, var(--light-grey) 100%); /* Subtle gradient background */
    padding: 30px;
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); /* Stronger, softer shadow */
    position: relative;
    width: 90%;
    max-width: 550px; /* Slightly wider modal */
    text-align: center;
    animation: fadeInScale 0.4s ease-out; /* Slightly longer animation */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Light border for modern look */
    transform: translateY(-20px); /* Start slightly higher for pop-up effect */
  }
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.8) translateY(-50px); /* Start smaller and higher */
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  .close-payment-modal {
    color: var(--dark-grey);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .close-payment-modal:hover,
  .close-payment-modal:focus {
    color: var(--pink);
    transform: rotate(90deg) scale(1.1); /* Spin and scale on hover */
    text-decoration: none;
  }
  
  .payment-modal-content h2 {
    color: var(--primary-color); /* Use primary color */
    font-size: 2.5em; /* Larger heading */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .payment-modal-content p {
    font-size: 1.2em; /* Slightly larger paragraph */
    color: #666;
    margin-bottom: 30px;
  }
  
  .payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px; /* More space between buttons */
    margin-bottom: 30px;
  }
  
  .payment-option-btn {
    background-color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--darker-blue)); /* Gradient for buttons */
    color: var(--white);
    padding: 18px 30px; /* Larger padding */
    border: none;
    border-radius: 12px; /* More rounded */
    font-size: 1.3em; /* Larger font */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* More space between icon and text */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* Stronger shadow */
    text-transform: uppercase; /* Uppercase text for buttons */
    letter-spacing: 1px;
  }
  
  .payment-option-btn i {
    font-size: 1.6em; /* Larger icon */
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white icon */
  }
  
  .payment-option-btn:hover {
    background: linear-gradient(45deg, var(--pink), var(--secondary-color)); /* Pinker gradient on hover */
    transform: translateY(-5px) scale(1.02); /* More pronounced lift and slight scale */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* Even stronger shadow */
  }
  
  .payment-details {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed var(--medium-grey); /* Dashed border */
    text-align: left;
  }
  
  .payment-details h3.payment-subheading {
    color: var(--secondary-color);
    font-size: 1.8em; /* Larger subheading */
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.05);
  }
  
  .payment-details p {
    margin-bottom: 12px;
    color: #444;
    text-align: left;
    font-size: 1.1em;
  }
  
  .payment-details .payment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-radius: 10px; /* Rounded list container */
    overflow: hidden; /* Ensures content stays within border-radius */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow for the list */
  }
  
  .payment-details .payment-list li {
    background-color: var(--grey);
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-grey); /* Lighter separator */
    font-size: 1.1em;
    color: var(--dark-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .payment-details .payment-list li:last-child {
    border-bottom: none; /* No border on last item */
  }
  
  .payment-details .payment-list li strong {
    color: var(--blue);
    font-weight: 600; /* Slightly lighter bold */
  }
  
  .confirm-payment-btn {
    background: linear-gradient(45deg, #28a745, #1d7b30); /* Green gradient */
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }
  
  .confirm-payment-btn:hover {
    background: linear-gradient(45deg, #218838, #1a6428); /* Darker green on hover */
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.25);
  }
  
  .payment-confirmation {
    padding: 30px;
    background-color: #e6ffe6; /* Light green background */
    border: 2px solid #a3e6a3; /* Stronger border */
    border-radius: 15px; /* More rounded */
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(40,167,69,0.2); /* Green-tinged shadow */
  }
  
  .confirmation-icon {
    font-size: 4em; /* Larger icon */
    color: #28a745;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out; /* Add entry animation */
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
  }
  
  .confirmation-message {
    font-size: 1.5em; /* Larger message */
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
  }
  
  .back-to-shop-btn {
    background: linear-gradient(45deg, var(--pink), var(--secondary-color));
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .back-to-shop-btn:hover {
    background: linear-gradient(45deg, var(--blue), var(--darker-blue));
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }
  
  /* Responsive adjustments for payment modal */
  @media (max-width: 600px) {
    .payment-modal-content {
      padding: 20px;
      max-width: 95%;
    }
  
    .payment-modal-content h2 {
      font-size: 2em;
    }
  
    .payment-option-btn {
      font-size: 1.1em;
      padding: 12px 20px;
    }
  
    .confirmation-icon {
      font-size: 3em;
    }
  }
  /* --- Our Services Section Responsiveness --- */

/* Base styles for the services frame using Grid */
.services-frame {
    display: grid;
    /* This will create columns that are at least 300px wide. */
    /* On smaller screens, it will automatically stack them. */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* Spacing between service items */
    padding: 20px; /* Padding around the entire services section */
    max-width: 1200px; /* Limit overall width */
    margin: 0 auto; /* Center the frame */
  }
  
  .service-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex; /* Use flexbox for content within each card */
    flex-direction: column; /* Stack image and text vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .service-item img {
    width: 100%;
    height: 220px; /* Fixed height for consistent image display */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-bottom: 1px solid #eee;
  }
  
  .service-text {
    padding: 20px;
    flex-grow: 1; /* Allows this section to take up available space */
    display: flex;
    flex-direction: column; /* Stack heading, paragraph, and button */
  }
  
  .service-text h3 {
    margin-top: 0;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
  }
  
  .service-text p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
    flex-grow: 1; /* Allows the paragraph to fill space if content length varies */
    margin-bottom: 15px; /* Space before the "Learn More" button */
  }
  
  .service-learn-more-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto; /* Pushes the button to the bottom of the card */
    align-self: flex-start; /* Aligns the button to the start within its flex container */
  }
  
  .service-learn-more-btn:hover {
    background-color: #0056b3;
    transform: scale(1.02);
  }
  
  /* --- Media Queries for smaller screens --- */
  @media (max-width: 768px) {
    .services-frame {
      grid-template-columns: 1fr; /* Stack items vertically on tablets and smaller */
      padding: 15px;
    }
  
    .service-item img {
      height: 180px; /* Adjust image height for smaller screens */
    }
  
    .service-text {
      padding: 15px;
    }
  
    .service-text h3 {
      font-size: 1.4em;
    }
  }
  
  @media (max-width: 480px) {
    .services-frame {
      padding: 10px;
    }
  
    .service-item img {
      height: 150px; /* Further adjust image height for mobile phones */
    }
  
    .service-text {
      padding: 12px;
    }
  
    .service-text h3 {
      font-size: 1.2em;
    }
  
    .service-text p {
      font-size: 0.9em;
    }
  
    .service-learn-more-btn {
      padding: 10px 20px;
      font-size: 0.9em;
    }
  }
  
  /* General improvements for headings and paragraphs */
  h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #333;
  }
  
  p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
  }
  /* ------------------------------------------- */
  /* NEW: Offers Section Styles */
  /* ------------------------------------------- */
  .offers-section {
    padding: 4rem 2rem; /* Increased padding */
    background-color: var(--light-grey); /* Lighter background for distinction */
    text-align: center;
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.05); /* Inner shadow for depth */
    margin: 2rem auto; /* Consistent margin */
    max-width: 1200px;
  }
  
  .offers-section h2 {
    font-size: 2.8em; /* Larger heading */
    color: var(--blue);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .offers-section .subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 3rem; /* More space below subtitle */
  }
  
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 2.5rem; /* Increased gap */
    justify-content: center;
    align-items: stretch; /* Ensure cards stretch to same height */
  }
  
  .offer-card {
    background: linear-gradient(135deg, var(--white), #f9f9f9); /* Subtle gradient */
    border-radius: 15px; /* More rounded */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Stronger, softer shadow */
    padding: 2.5rem; /* Increased padding */
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition */
    border: 1px solid rgba(0,0,0,0.05); /* Very light border */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push coupon box to bottom */
  }
  
  .offer-card:hover {
    transform: translateY(-10px) scale(1.02); /* More pronounced lift and scale */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Even stronger shadow on hover */
  }
  
  .offer-card h3 {
    color: var(--pink); /* Highlight with pink */
    font-size: 1.8em; /* Larger heading */
    margin-bottom: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.05);
  }
  
  .offer-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Space before coupon */
    flex-grow: 1; /* Allows paragraph to take available space */
  }
  
  .coupon-box {
    background-color: var(--blue); /* Dark background for coupon */
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem; /* Space above coupon box */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); /* Shadow on coupon box */
  }
  
  .coupon-code {
    font-family: 'Roboto Mono', monospace; /* Monospace font for code */
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
    user-select: all; /* Allow easy selection */
  }
  
  .copy-coupon-btn {
    background-color: var(--accent-color); /* Bright accent color */
    color: var(--white);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .copy-coupon-btn:hover {
    background-color: #008c9e; /* Darker accent on hover */
    transform: translateY(-2px);
  }
  
  .offer-terms {
    font-size: 0.9em;
    color: #888;
    margin-top: 1.5rem;
    font-style: italic;
  }
  /* Responsive styles for small devices */
@media (max-width: 768px) {
  /* Make services frame stack vertically */
  .services-frame {
    display: block;
    padding: 10px;
  }

  /* Style each service item to be full width */
  .service-item {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  /* Make images responsive */
  .service-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Adjust service text padding and font size if needed */
  .service-text {
    padding: 10px;
  }

  /* Optional: Adjust the layout of other sections if necessary */
}
  
  /* ------------------------------------------- */
  /* NEW: Testimonials Section Styles */
  /* ------------------------------------------- */
  .testimonials-section {
    padding: 4rem 2rem; /* Increased padding */
    background: linear-gradient(135deg, var(--white), var(--grey)); /* Subtle gradient background */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Stronger shadow */
    margin: 2rem auto;
    max-width: 1200px;
  }
  
  .testimonials-section h2 {
    font-size: 2.8em; /* Larger heading */
    color: var(--blue);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .testimonials-section .subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 3rem; /* More space below subtitle */
  }
  
  .testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px; /* Constrain carousel width */
    margin: 0 auto;
    padding: 1.5rem; /* Padding inside carousel for cards */
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12); /* Softer carousel shadow */
  }
  
  .testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
  }
  
  .testimonial-card {
    flex: 0 0 100%; /* Each card takes full width */
    background: var(--grey);
    border-radius: 12px;
    padding: 3rem 2rem; /* More padding */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Subtle shadow on cards */
    margin: 0 1rem; /* Space between cards in carousel */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    min-height: 350px; /* Ensure consistent card height */
  }
  
  .testimonial-image {
    width: 120px; /* Larger image */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pink); /* Vibrant border */
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); /* Shadow on image */
  }
  
  .testimonial-text {
    font-size: 1.3em; /* Larger text */
    color: #333;
    line-height: 1.8; /* Better readability */
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 20px; /* Padding for quote marks */
  }
  
  .testimonial-text::before {
    content: "“"; /* Opening quote */
    font-size: 3em;
    color: var(--blue);
    position: absolute;
    left: 0;
    top: -10px;
    opacity: 0.2;
  }
  
  .testimonial-text::after {
    content: "”"; /* Closing quote */
    font-size: 3em;
    color: var(--blue);
    position: absolute;
    right: 0;
    bottom: -30px;
    opacity: 0.2;
  }
  
  .testimonial-author {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .testimonial-stars {
    color: gold; /* Yellow stars */
    font-size: 1.1em;
    margin-top: 0.5rem;
  }
  
  .testimonial-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    pointer-events: none; /* Allow clicks to pass through to buttons */
  }
  
  .nav-btn {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px; /* Larger buttons */
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em; /* Larger arrow icon */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: all; /* Re-enable clicks for buttons */
  }
  
  .nav-btn:hover {
    background-color: var(--pink);
    transform: scale(1.1);
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* Space below carousel */
    gap: 10px;
  }
  
  .dot {
    width: 12px; /* Larger dots */
    height: 12px;
    background-color: var(--medium-grey);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .dot.active {
    background-color: var(--pink);
    transform: scale(1.2);
  }
  
  .load-more-btn {
    display: inline-block;
    margin-top: 3rem; /* More space above button */
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--pink), var(--secondary-color)); /* Gradient button */
    color: var(--white);
    text-decoration: none;
    border-radius: 8px; /* More rounded */
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .load-more-btn:hover {
    background: linear-gradient(45deg, var(--blue), var(--darker-blue)); /* Change gradient on hover */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  
  /* Responsive adjustments for offers and testimonials */
  @media (max-width: 768px) {
    .offers-grid {
      grid-template-columns: 1fr; /* Stack cards on small screens */
    }
  
    .offer-card {
      padding: 2rem;
    }
  
    .offer-card h3 {
      font-size: 1.6em;
    }
  
    .coupon-code {
      font-size: 1.1em;
    }
  
    .testimonial-carousel {
      padding: 1rem;
    }
  
    .testimonial-card {
      padding: 2.5rem 1.5rem;
      min-height: 300px;
    }
  
    .testimonial-image {
      width: 100px;
      height: 100px;
    }
  
    .testimonial-text {
      font-size: 1.1em;
    }
  
    .testimonial-navigation .nav-btn {
      width: 40px;
      height: 40px;
      font-size: 1.3em;
    }
  }
  
  /* Media Query for Mobile Navigation */
  @media (max-width: 900px) {
    .main-menu {
      display: none; /* Hide desktop menu */
    }
  
    .menu-toggle {
      display: block; /* Show mobile toggle */
      margin-left: auto; /* Push to the right */
    }
  
    .search-container {
      order: 3; /* Move search below menu on small screens */
      width: 100%; /* Full width search */
      margin-top: 1rem;
      justify-content: center; /* Center the search input and button */
    }
  
    .search-container input {
      width: 70%; /* Adjust width for input */
    }
  
    .header-contact-info {
      order: 2; /* Move contact info below logo/text */
      width: 100%;
      justify-content: center; /* Center contact info */
      margin-top: 1rem;
      margin-left: 0; /* Remove left margin */
    }
  
    .main-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .main-header .header-content {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  }
  
  /* NEW: Stats Section Styles (Enhanced) */
  .stats-section {
    padding: 3rem 1rem; /* Adjusted padding */
    background: linear-gradient(90deg, var(--blue), var(--pink)); /* Vibrant gradient background */
    color: var(--white); /* White text for contrast */
    text-align: center;
    margin: 3rem auto; /* More margin from surrounding sections */
    max-width: 1200px;
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Prominent shadow */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around; /* Space out items */
    gap: 2rem; /* Gap between stat items */
  }
  
  .stat-item {
    flex: 1 1 250px; /* Flexible items, min-width 250px */
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white background for each item */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Frosted glass effect */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Shadow for each item */
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-8px) scale(1.03); /* Lift and slightly enlarge on hover */
    background-color: rgba(255, 255, 255, 0.2); /* More transparent on hover */
  }
  
  .stat-item .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em; /* Larger numbers */
    font-weight: 700;
    color: var(--white); /* White numbers */
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .stat-item .label {
    font-size: 1.3em; /* Larger labels */
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white label */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  @media (max-width: 768px) {
    .stats-section {
      flex-direction: column; /* Stack items vertically on smaller screens */
      padding: 2rem;
    }
    .stat-item {
      flex: 1 1 100%; /* Take full width */
    }
  }
  /* --- Footer Button Links Styling --- */
.footer-section .footer-button-link {
    display: block; /* Make them block-level to take full width and apply padding */
    background-color: #1c2e4a; /* A slightly lighter blue/dark grey for the button background */
    color: #ffffff; /* White text */
    padding: 10px 15px; /* Padding inside the button */
    border-radius: 8px; /* Rounded corners for button look */
    text-decoration: none; /* Remove underline */
    text-align: center; /* Center the text */
    margin-bottom: 12px; /* Space between buttons */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Smooth transitions for hover */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
    font-weight: bold; /* Make text bolder */
    font-size: 0.9em; /* Adjust font size */
    line-height: 1.3; /* Adjust line height for the <small> tag */
}

.footer-section .footer-button-link:hover {
    background-color: #0d47a1; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Enhanced shadow on hover */
}

.footer-section .footer-button-link small {
    display: block; /* Make small tag go to a new line */
    font-size: 0.75em; /* Smaller font for descriptive text */
    opacity: 0.8; /* Slightly faded secondary text */
    margin-top: 3px; /* Space between main text and small text */
    font-weight: normal; /* Normal weight for the small text */
}

/* Ensure other footer links are styled correctly if they exist */
.footer-section a:not(.footer-button-link) {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-section a:not(.footer-button-link):hover {
    color: #ff9800; /* Accent color on hover for regular links */
}

/* Responsive adjustments for footer buttons */
@media (max-width: 768px) {
    .footer-section .footer-button-link {
        padding: 8px 10px;
        margin-bottom: 10px;
        font-size: 0.85em;
    }
    .footer-section .footer-button-link small {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .footer-section .footer-button-link {
        border-radius: 6px;
        padding: 7px 8px;
        margin-bottom: 8px;
    }
}