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

:root {
  --primary-dark: #333333;
  --white: #FFFFFF;
  --accent-green: #8dc63f;
  --light-grey: #F0F0F0;
  --dark-olive: #6B8E23;
  --text-color: #333333;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
  --transition: 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

/* Subtle texture background */
.texture-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  opacity: 0.03;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  transition: height 0.3s ease;
}

nav ul {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: var(--accent-green);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--accent-green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--dark-olive);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hamburger Menu Animation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Header scroll behavior */
header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .logo img {
  height: 45px;
}

.mobile-phone {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.hero .cta-button {
  font-size: 1.1rem;
  padding: 15px 35px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(141, 198, 63, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(141, 198, 63, 0); }
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-down span {
  font-size: 0.85rem;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Introduction Section */
.intro {
  background: var(--white);
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

/* Services Section (Three Pillars) */
.services-overview {
  background: var(--light-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  fill: var(--accent-green);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--white);
}

.why-choose-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-us-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.why-choose-us-content h2 {
  margin-bottom: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-item svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.why-item h4 {
  margin-bottom: 5px;
}

.why-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--light-grey);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card .quote {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonial-card .rating {
  color: #f5b301;
  margin-bottom: 10px;
}

/* Service Areas Section */
.service-areas {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.areas-list h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.areas-list h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-green);
}

.areas-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.areas-list li {
  background: var(--light-grey);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-olive), var(--accent-green));
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 35px;
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--accent-green);
}

.cta-section .cta-button:hover {
  background: var(--light-grey);
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section a {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent-green);
}

.footer-section p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-green);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 25px;
}

/* Trust Badges */
.trust-badges {
  background: var(--light-grey);
  padding: 40px 0;
  text-align: center;
}

.trust-badges h4 {
  margin-bottom: 25px;
  color: #666;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Page Hero Styles */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Page */
.service-category {
  background: var(--white);
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-category-card {
  background: var(--light-grey);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.service-category-content {
  padding: 30px;
}

.service-category-content h3 {
  margin-bottom: 15px;
}

.service-category-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-category-content a {
  color: var(--accent-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-category-content a:hover {
  color: var(--dark-olive);
}

/* Process Section */
.process {
  background: var(--light-grey);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--accent-green);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.process-step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Page */
.about-story {
  background: var(--white);
}

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-story-content h2 {
  margin-bottom: 25px;
}

.about-story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Values Section */
.values {
  background: var(--light-grey);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-card svg {
  width: 50px;
  height: 50px;
  fill: var(--accent-green);
  margin-bottom: 20px;
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Locations Page */
.locations-map {
  background: var(--white);
}

.map-container {
  background: var(--light-grey);
  border-radius: 12px;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.locations-list {
  background: var(--light-grey);
}

.locations-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.counties-list h3,
.cities-list h3 {
  margin-bottom: 25px;
}

.counties-list ul,
.cities-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.counties-list li,
.cities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.counties-list li svg,
.cities-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-green);
}

/* Contact Page */
.contact-info {
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-grey);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-card svg {
  width: 50px;
  height: 50px;
  fill: var(--accent-green);
  margin-bottom: 20px;
}

.contact-card h4 {
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
}

.contact-card a {
  color: var(--accent-green);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--dark-olive);
}

/* Contact Form */
.contact-form-section {
  background: var(--light-grey);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-green);
}

.form-submit {
  text-align: center;
  margin-top: 35px;
}

.form-submit .cta-button {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item summary {
  padding: 25px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 25px;
  color: #666;
  line-height: 1.7;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .header-container {
    padding: 12px 20px;
  }
  
  nav, .header-actions .phone-link {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-phone {
    display: block;
  }
  
  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .scroll-down {
    display: none;
  }
  
  section {
    padding: 60px 0;
  }
  
  .services-grid,
  .testimonials-grid,
  .service-category-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-us .container,
  .about-story .container {
    grid-template-columns: 1fr;
  }
  
  .why-choose-us-image {
    order: -1;
  }
  
  .areas-grid,
  .locations-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .trust-logos {
    gap: 25px;
  }
  
  .trust-logos img {
    height: 30px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero {
    background-attachment: scroll;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 2000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header .logo img {
  height: 40px;
}

.close-menu {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.mobile-menu nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-phone-link {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
}

.mobile-menu .cta-button {
  text-align: center;
}
