:root {
  --primary-color: #0056b3;
  --secondary-color: #28a745;
  --accent-color: #ffc107;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --text-color: #212529;
  --text-light: #6c757d;
}

/* Шрифты */
@font-face {
  font-family: 'Segoe UI';
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f5f5;
  overflow-x: hidden;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, #FF8C00 50%, #1E90FF 50%);
  padding: 0;
  height: 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.header-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Menu */
.menu-toggle {
  position: relative;
  z-index: 100;
}

.menu-btn {
  padding: 5px 15px;
  background: #228B22;
  color: white;
  border-radius: 3px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.3);
}

.menu-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0056b3;
  border-radius: 0 0 5px 5px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
}

.menu-toggle:hover .menu-nav,
.menu-toggle:focus-within .menu-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-nav ul {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.menu-nav li {
  padding: 0.5rem 1rem;
  transition: background 0.3s;
}

.menu-nav li:hover {
  background: rgba(0,86,179,0.1);
}

.menu-nav a {
  color: white;
  display: block;
}

/* Language switcher */
.language-switcher {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.language-btn {
  padding: 3px 7px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 3px;
  font-size: 14px;
  transition: all 0.3s;
  margin-right: 1em;
}

.language-btn.active {
  background: #228B22;
  font-weight: bold;
}

.language-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, rgba(0,86,179,0.5), rgba(0,51,102,0.5)), 
              url('/img/fone.avif') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 60px;
  background-color: #0056b3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  will-change: transform;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.3s;
  color: white;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin: 2rem auto;
  padding: 1rem 2rem;
  max-width: 800px;
  line-height: 1.6;
  color: white;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.8),
    0 0 5px rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: subtitle-fade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes subtitle-fade {
  to { opacity: 1; transform: translateY(0); }
}

.cta-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Стили для иконки с анимацией */
.cta-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  transition: all 0.4s ease;
  transform-origin: center 70%;
}

/* Эффект при наведении */
.cta-button:hover {
  background: linear-gradient(135deg, #2fb548 0%, #218838 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 
              0 3px 6px rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:hover .cta-icon {
  animation: phone-shake 0.5s ease infinite alternate;
}

@keyframes phone-shake {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Эффект нажатия */
.cta-button:active {
  background: linear-gradient(135deg, #1e7e34 0%, #186129 100%);
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 
              inset 0 2px 2px rgba(0, 0, 0, 0.1),
              inset 0 -1px 1px rgba(255, 255, 255, 0.1);
}

.cta-button:active .cta-icon {
  transform: scale(0.95);
  animation: none;
}

/* Эффект свечения */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover::before {
  opacity: 1;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .cta-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
}

/* Main sections */
section {
  padding: 4rem 0;
  background-color: white;
}

section:nth-child(even) {
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 1rem auto 0;
}

  .phone-link {
    display: inline-block;
    color: #0000FF;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
  }
  .phone-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #27ae60;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  .phone-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  /* Основные стили секции */
  #about {
    padding: 2rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  
  /* Стили для контента */
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  
  .about-text {
    flex: 1 1 500px;
    position: relative;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e3f2fd' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
  }
  
  .about-text strong {
    color: #2c3e50;
    font-weight: 600;
  }
  
  /* Стили для номера телефона */
  .phone-link {
    display: inline-block;
    color: #fff !important;
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin: 5px 0;
  }
  
  .phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
  }
  
  /* Стили для изображения */
  .about-image {
    flex: 1 1 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: translateY(-5px);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.03);
  }
  
  /* Декоративный элемент для изображения */
  .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.2));
    z-index: 1;
    border-radius: 15px;
  }
  
  /* Адаптивность */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
    
    .about-text, .about-image {
      flex: 1 1 auto;
      width: 100%;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
          .full-width-card {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            position: relative;
            padding: 40px;
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .floating-image {
            float: right;
            shape-outside: circle(50%);
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 0 20px 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

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

        .card-title {
            font-size: 2.0rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .card-text {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .highlight {
            color: #3498db;
            font-weight: 600;
        }

        .phone-link {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .phone-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }

        .decorative-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.1));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
            z-index: 1;
        }

        @media (max-width: 768px) {
            .floating-image {
                float: none;
                width: 200px;
                height: 200px;
                margin: 0 auto 20px;
                display: block;
            }
            
            .full-width-card {
                padding: 30px 20px;
            }
            
            .card-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .decorative-bg {
                width: 100%;
                clip-path: none;
                opacity: 0.3;
            }
        }

/* Features section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center; /* Центрируем содержимое по горизонтали */
  text-align: center; /* Центрируем текст */
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Стили для иконок */
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0, 86, 179, 0.1); /* Легкий фон для круга */
  border-radius: 50%; /* Делаем круг */
}

.feature-icon .icon {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon .icon {
    width: 30px;
    height: 30px;
  }
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-price {
  color: #0000FF; /* Ярко-красный */
    font-weight: bold;
    background-color: #ffebee; /* Светлый фон */
    padding: 2px 8px;
    border-radius: 4px;
}

/* Gallery section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  loading: lazy;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Testimonials section */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 1rem;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
}

/* FAQ section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #004494;
}

.faq-answer {
  background: white;
  padding: 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

/* Footer */
footer {
  background: #222;
  color: #eee;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #4fc3f7;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

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

.social-links a:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
   color: #4fc3f7;
  font-size: 0.9rem;
}

/* Floating buttons */
.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-button-left {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-button:hover, 
.floating-button-left:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-button svg,
.floating-button-left svg {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.floating-button:hover svg,
.floating-button-left:hover svg {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.floating-button.pulse {
  animation: pulse 2s infinite;
}

/* Popup */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup__content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  max-width: 90%;
  width: 400px;
}

.popup h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.popup input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.popup input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.popup button[type="submit"] {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup button[type="submit"]:hover {
  background-color: #218838;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 1.2rem 0;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  
  .popup {
    right: 20px;
    bottom: 100px;
  }
  
  .menu-toggle {
    position: static;
    order: 1;
  }
  
  .language-switcher {
    position: static;
    transform: none;
    order: 2;
    margin-left: 9em;
  }
  
  .menu-btn {
    padding: 8px 15px;
    transform: none;
  }
  
  .menu-nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background: #0056b3;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 20px;
  }
  
  .menu-toggle.active .menu-nav {
    left: 0;
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .menu-toggle.active ~ .menu-overlay {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}