:root {
  /* Primary Colors - Green/Teal Theme for Landscaping */
  --primary-color: #2d7a3e;
  --primary-hover: rgba(45, 122, 62, 0.9);
  --secondary-color: #0db8d5;
  --secondary-hover: rgba(13, 184, 213, 0.9);
  
  /* Text Colors */
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  
  /* Gray Scale */
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  
  /* Green Variants */
  --light-green-bg: rgba(45, 122, 62, 0.1);
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-600: #16a34a;
  --green-700: #15803d;
  --teal-color: #0db8d5;
  --teal-hover: #0a9bb8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.font-semibold {
  font-weight: 600;
}

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

.section-bg-gray {
  background-color: #f1f5f9;
}

.section-bg-white {
  background-color: #ffffff;
}

.section-bg-light-green {
  background-color: #f0fdf4;
}

.trust-indicators {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.trust-item {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-green-bg);
  border-radius: 50%;
  color: var(--primary-color);
}

.trust-item h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.trust-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

@keyframes pulsate {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(45, 122, 62, 0.6); 
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 0 20px rgba(45, 122, 62, 0); 
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(45, 122, 62, 0); 
  }
}

.pulsate-button {
  animation: pulsate 2s ease-in-out infinite;
}

.hero-cta {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-card a {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.service-card a:hover {
  color: var(--primary-hover);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.contact-button {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(45, 122, 62, 0.2);
  white-space: nowrap;
  font-size: 0.9375rem;
}

.contact-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(45, 122, 62, 0.4);
}

.contact-button i {
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-button {
    display: flex;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: none;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

@media (min-width: 768px) {
  .logo-image {
    height: 70px;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 400;
  font-size: 1.125rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  line-height: 1;
  margin-left: 0.125rem;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: var(--light-green-bg);
  color: var(--primary-color);
}

/* Submenu styling for Turfing dropdown */
.nav-dropdown-submenu {
  position: relative;
}

.nav-dropdown-toggle-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nav-dropdown-toggle-sub i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-submenu:hover .nav-dropdown-toggle-sub i {
  transform: translateX(3px);
}

.nav-dropdown-submenu-items {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  margin-left: 0.5rem;
}

.nav-dropdown-submenu:hover .nav-dropdown-submenu-items {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-dropdown-submenu-items li {
  list-style: none;
}

.nav-dropdown-submenu-items a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.nav-dropdown-submenu-items a:hover {
  background-color: var(--light-green-bg);
  color: var(--primary-color);
}

/* Commercial Turf Grid */
.commercial-turf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .commercial-turf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .commercial-turf-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  max-width: none;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
}

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

@media (min-width: 768px) {
  .footer-logo {
    height: 90px;
  }
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p,
.footer-section a {
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
  text-align: center;
  color: var(--gray-400);
}

.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-shadow-md {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-lg {
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(45, 122, 62, 0.3);
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.4);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  max-height: 90vh;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-menu.active {
  top: 0;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-300);
  background-color: var(--primary-color);
  color: var(--white);
}

.mobile-menu-header .logo {
  color: var(--white);
  font-size: 1.25rem;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s;
}

.mobile-menu-close:hover {
  opacity: 0.8;
}

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-menu-section {
  margin-bottom: 2rem;
}

.mobile-menu-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.mobile-menu-category i {
  font-size: 1.25rem;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin-bottom: 0.5rem;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.mobile-menu-list a i {
  font-size: 1.25rem;
}

.mobile-menu-list a:hover {
  background-color: var(--light-green-bg);
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.1);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-green-bg);
  color: var(--primary-color);
}

.faq-item.active .faq-question {
  background-color: var(--light-green-bg);
  color: var(--primary-color);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--gray-50);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.25rem;
    padding: 1.75rem 2rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.75rem 2rem;
  }
  
  .faq-answer p {
    font-size: 1.0625rem;
  }
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid white;
  outline: 6px solid #3fb950;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.profile-pic-container {
  display: inline-block;
  position: relative;
}

/* Policy Pages Styling */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

.content-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.policy-section h3 {
  font-size: 1.375rem;
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-section li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: var(--text-color);
  font-weight: 600;
}

.policy-section a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: var(--primary-hover);
}

.info-box {
  background-color: var(--light-green-bg);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}

.info-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-color);
}

.info-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-800);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  padding: 1.5rem;
  border-top: 3px solid var(--primary-color);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-consent-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cookie-consent-text {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex: 1;
}

.cookie-consent-icon {
  font-size: 2.5rem;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cookie-consent-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-consent-text p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-consent-text a {
  color: var(--green-400);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

.cookie-consent-text a:hover {
  color: var(--white);
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .cookie-consent-buttons {
    flex-direction: row;
    width: auto;
  }
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
}

@media (max-width: 479px) {
  .cookie-btn {
    width: 100%;
  }
}
