/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #0a4a8f;
  --secondary-color: #f39c12;
  --accent-color: #D90429; /* <-- ADD THIS LINE (A strong red) */
  --dark-text: #333333;
  --light-text: #ffffff;
  --body-bg: #ffffff; /* Changed to white for a cleaner look */
  --card-bg: #ffffff;
  --section-bg: #f9f9f9;
  --border-color: #eeeeee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--body-bg);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h2.section-title {
  font-size: 2.5rem;
  color: var(--accent-color); /* <-- CHANGE THIS LINE */
  text-align: center;
  margin-bottom: 3rem;
}
p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #efe3e3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.section-separator {
  height: 1px;
  background-color: var(--border-color);
  margin: 4rem auto;
  width: 90%;
  max-width: 1200px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
   /* ========================================
   HEADER & NAVIGATION (ISRO Logo additions)
   ======================================== */

.nav-links .isro-logo-item {
  display: flex; /* Use flex to align the logo nicely */
  align-items: center;
  margin-left: 1.5rem; /* Add some space from the "Tools" link */
  padding: 0; /* Remove default padding for list items */
}

.isro-logo {
  height: 60px; /* Adjust height as needed for your logo */
  width: auto;
  transition: transform 0.3s ease;
}

.isro-logo:hover {
  transform: scale(1.05);
}

/* --- Responsive adjustments for the ISRO logo --- */
@media (max-width: 992px) {
  .nav-links .isro-logo-item {
    margin-left: 0; /* Remove extra margin in mobile view */
    border-bottom: 1px solid var(--border-color); /* Add border for consistency */
    padding: 1.25rem 2rem; /* Match other mobile nav links padding */
    justify-content: flex-start; /* Align left in mobile menu */
  }

  .isro-logo {
    height: 35px; /* Slightly smaller on mobile if desired */
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-left .logo-link {
  display: block;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.navbar-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* --- Dropdown Menu --- */
.dropdown-toggle::after {
  content: ' ▼';
  font-size: 0.7rem;
  display: inline-block;
  margin-left: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1001;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  width: 100%;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: var(--primary-color);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1002;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light-text);
}

.discover-button {
  background-color: var(--secondary-color);
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.discover-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  opacity: 1;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 4rem 0;
}

.about-overlay {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--accent-color); /* <-- CHANGE THIS LINE */
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
  color:grey;
}

/* ========================================
   VERTICALS (BUSINESSES) SECTION
   ======================================== */
.verticals-section {
  padding: 4rem 0;
  background-color: var(--section-bg);
}

.verticals-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vertical-card {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vertical-card:hover {
  transform: scale(1.03);
}

.vertical-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.vertical-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.1) 100%);
}

.vertical-card h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  font-weight: 600;
  transform: translateY(10px);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vertical-card:hover h3 {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================
   FEATURES (WHY CHOOSE US)
   ======================================== */
.features {
  padding: 4rem 0;
}

.feature-tiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-tile {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.icon-wrapper {
  margin-bottom: 1rem;
}

.icon-wrapper img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.feature-tile p {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========================================
   PARTNERS MARQUEE
   ======================================== */
.partners-section {
    padding: 4rem 0;
    background-color: var(--section-bg);
    overflow: hidden;
}

.partners-marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.partners-marquee {
    display: flex;
    flex-shrink: 0;
    gap: 2rem;
    padding: 0 1rem;
    animation: marquee-scroll 60s linear infinite;
  
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.partner-tile {
    flex: 0 0 auto;
    width: 180px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partner-tile:hover {
    opacity: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--primary-color);
  color: var(--light-text);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-overlay {
  padding: 2.5rem 2rem;
  position: relative;
  background-color: rgba(10, 74, 143, 0.9);
}

.quote-icon {
  font-size: 5rem;
  font-weight: 700;
  color: var(--secondary-color);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  color: var(--light-text);
}

.client-info {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  z-index: 2;
  position: relative;
}

.client-info h4 {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 0.25rem;
}

.client-info span {
  font-size: 0.9rem;
  color: #ddd;
}

/* ========================================
   CONTACT CTA
   ======================================== */
.cta-section {
  padding: 5rem 0;
  background: url('cta-bg.jpeg') no-repeat center center/cover;
  position: relative;
}

.cta-overlay {
  background-color: rgba(10, 74, 143, 0.85);
  padding: 5rem 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ... and REPLACE them with this */
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 1rem; /* Slightly more padding */
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  
  /* This is the new look: */
  background-color: rgba(255, 255, 255, 0.1);  /* Semi-transparent background */
  border: 1px solid rgba(255, 255, 255, 0.3);  /* Subtle white border */
  color: var(--light-text);                     /* White text for typing */
  
  border-radius: 5px;
  /* Updated transition to include background-color */
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
/* This styles the placeholder text (e.g., "Your Name") */
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1; /* Required for Firefox */
}
/* ... and REPLACE it with this */
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2); /* Get slightly brighter when clicked */
  border-color: var(--secondary-color); /* Keep the orange highlight */
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.5); /* Make the glow a bit stronger */
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ... and modify it to this */
.lead-form button[type="submit"] {
  background-color: var(--secondary-color);
  color: #000000; /* <-- CHANGE to black for better readability */
  font-size: 1.1rem;
  font-weight: 700; /* <-- CHANGE to bolder */
  padding: 0.9rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
}

.lead-form button[type="submit"]:hover {
  background-color: #e67e22; /* Darker orange */
  transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 4rem 0 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

.footer-col h3::after,
.footer-col h4::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-top: 0.5rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #bdc3c7;
  max-width: 350px;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #bdc3c7;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.footer-contact-item img {
  width: 40px;
  height: 40px;
  filter: invert(1);
  margin-top: 5px;
}
.footer-contact-item ul {
  padding-left: 0;
  list-style: none;
}
.footer-contact-item ul li {
  margin-bottom: 0.5rem;
}
.footer-contact-item a {
  color: #bdc3c7;
  font-weight: 500;
  word-break: break-all;
}
.footer-contact-item a:hover {
  color: var(--light-text);
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #34495e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-4px);
  opacity: 1;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.footer-socials a[aria-label="X"] img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding: 1.5rem 0;
  text-align: center;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #bdc3c7;
}

.footer-links a {
  color: #efe3e3;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  color: var(--light-text);
  opacity: 1;
}

/* ========================================
   FLOATING BUTTONS & POPUP
   ======================================== */
/* Change this one to be lower down */
.whatsapp-float {
position: fixed;
bottom: 20px; /* <-- FIX 2: Changed from 100px to avoid overlap with Call button */
right: 20px;
width: 60px;
height: 60px;
background-color:white; /* A nice blue color */
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 24px;
box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); /* soft glow */
z-index: 99;
transition: transform 0.3s ease, background-color 0.3s ease;
cursor: pointer;
}
.whatsapp-float:hover {
transform: scale(1.1);
background-color: greenyellow;
}

.whatsapp-float img {
width: 30px;
height: 30px;

}
/* Floating Call Button */
/* Keep this one at 100px */
.call-float {
position: fixed;
bottom: 100px; /* Positioned 100px from the bottom */
right: 20px;
width: 60px;
height: 60px;
background-color:white;/* A nice blue color */
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 24px;
box-shadow: 0 0 15px rgba(37, 135, 211, 0.6); /* soft glow */
z-index: 99;
 transition: transform 0.3s ease, background-color 0.3s ease; 
cursor: pointer;
border:none;
}
.call-float:hover {
transform: scale(1.1);
background-color: lightcyan;
}

.call-float img {
width: 50px;
height: 33px;
  
}

/* Pop-up Overlay */
.call-popup-overlay {
 display: none; /* Hidden by default */
position: fixed;
 top: 0;
left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.6);
z-index: 100;
 backdrop-filter: blur(5px);
 -webkit-backdrop-filter: blur(5px);
animation: fadeIn 0.3s forwards;
}


/* Pop-up Box */
.call-popup-box {
 position: fixed;
 top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
text-align: center;
width: 90%;
max-width: 400px;
}

/* Pop-up Heading */
.call-popup-box h3 {
font-size: 1.5rem;
font-weight: bold;
 color: #333;
 margin-bottom: 20px;
}

/* Phone number link in call-popup: FIXING VISIBILITY. Using theme red/blue for contrast against white background. */
.call-popup-box a,
.call-popup-box a:link,
.call-popup-box a:visited {
 /* Changed from `white !important` to a visible color. Using the blue from the floating button. */
color: #3B82F6 !important; 
text-decoration: none;
}

.call-popup-box a:hover,
.call-popup-box a:active {
/* Use a darker blue on hover for consistency */
color: #2563EB !important;
}


/* Close Button */
.close-btn {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
color: #666;
cursor: pointer;
background: transparent;
line-height: 1;
padding: 5px;
}

/* General Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent-overlay.open {
  transform: translateY(0);
}

.cookie-consent-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-text);
  max-width: 1200px;
  width: 100%;
  gap: 1.5rem;
}

.cookie-consent-box p {
  color: #eee;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.cookie-consent-box p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-consent-buttons .btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.btn-accept {
  background: var(--secondary-color);
  color: var(--light-text);
}
.btn-reject {
  background: #555;
  color: #fff;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   RESPONSIVE - MEDIA QUERIES
   ======================================== */

/* --- Tablet (Medium Devices) --- */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .navbar-center {
    position: fixed;
    top: 0;
    left: -100%; /* Start off-screen */
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6rem;
    transition: left 0.4s ease;
    z-index: 1001;
  }

  .navbar-center.open {
    left: 0; /* Slide in */
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
  }

  .dropdown-toggle::after {
    float: right;
    transition: transform 0.3s ease;
  }
  .dropdown-menu.open .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    opacity: 1;
    transform: none;
    padding: 0;
    background-color: #f8f8f8;
  }
  .dropdown-menu.open {
    display: block;
  }
  .dropdown-menu li a {
    padding-left: 3rem;
  }

  .verticals-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-tiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col p {
    margin: 0 auto 1rem auto;
  }
  .footer-col h3::after,
  .footer-col h4::after {
    margin: 0.5rem auto 0 auto;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }
  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* --- Mobile (Small Devices) --- */
@media (max-width: 576px) {
  h2.section-title {
    font-size: 2rem;
  }
  
  .feature-tiles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-marquee {
    animation-duration: 40s; /* Speed up marquee on mobile */
  }
  .partner-tile {
    width: 120px;
    height: 60px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
  
  .cookie-consent-box {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}