/* Elvora Consulting - Professional CQC Consultancy Styles */

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

/* CSS Variables */
:root {
  --primary: #20B2AA;
  --secondary: #008B8B;
  --accent: #48CAE4;
  --color-gradient: linear-gradient(135deg, #20B2AA 0%, #008B8B 50%, #48CAE4 100%);
  --color-success: #28A745;
  --color-warning: #FFC107;
  --color-dark: #2C3E50;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-muted: #6C757D;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-heavy: 0 8px 30px rgba(32,178,170,0.3);
  --shadow-purple: 0 8px 25px rgba(32,178,170,0.2);
}

/* General Styles */
html, body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--color-gradient);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(32,178,170,0.8);
  filter: brightness(1.3) saturate(1.2);
  background: linear-gradient(135deg, #48CAE4 0%, #20B2AA 100%);
}

.btn-outline {
  background: var(--color-white);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-light);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--color-white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(32,178,170,0.8);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-muted);
}

/* Header */
header {
  background: var(--color-white);
  box-shadow: var(--shadow-light);
  padding: 25px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo:hover {
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--color-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-purple);
  transition: all 0.3s ease;
}

.logo-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(32,178,170,0.4);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.logo .tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gradient);
  transition: width 0.3s ease;
}

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

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

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

.header-phone,
.header-email {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-phone {
  background: var(--color-gradient);
  color: var(--color-white);
  box-shadow: var(--shadow-light);
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.header-email {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.header-email:hover {
  background: var(--primary);
  color: var(--color-white);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: var(--color-gradient);
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 178, 170, 0.4); /* #20B2AA with 40% opacity */
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--color-gradient);
  filter: brightness(0.6);
}

.hero-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-text {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 1.2rem;
  animation: float 20s infinite ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.service-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.service-float-2 { top: 20%; right: 10%; animation-delay: 2s; }
.service-float-3 { top: 40%; left: 8%; animation-delay: 4s; }
.service-float-4 { top: 60%; right: 5%; animation-delay: 6s; }
.service-float-5 { top: 75%; left: 12%; animation-delay: 8s; }
.service-float-6 { top: 85%; right: 8%; animation-delay: 10s; }
.service-float-7 { top: 30%; left: 15%; animation-delay: 12s; }
.service-float-8 { top: 50%; right: 15%; animation-delay: 14s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Poppins', sans-serif;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

/* Services Section */
.services {
  background: var(--color-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 0;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  font-size: 3rem;
  font-weight: 700;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.service-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--color-text);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.learn-more-btn {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.learn-more-btn::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--secondary);
}

.learn-more-btn:hover::after {
  margin-left: 10px;
}

/* About Section */
.about-section {
  background: var(--color-white);
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.melissa-photo {
  width: 400px;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  margin: 0 auto 20px auto;
  display: block;
  background: var(--color-light);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.credential-badge {
  background: var(--color-gradient);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--color-text);
}

.cqc-expertise {
  margin: 30px 0;
}

.cqc-expertise h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.expertise-item {
  background: var(--color-light);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: var(--color-gradient);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Testimonials Section */
.client-feedback {
  background: var(--primary);
  color: var(--color-white);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--color-white);
}

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

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--color-light);
  padding: 100px 0;
}

.consultation-header {
  margin-bottom: 50px;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.consultation-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32,178,170,0.1);
}

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

.form-actions {
  margin-top: 30px;
}

.form-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.consultation-benefits {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.consultation-benefits h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.benefit-content p {
  color: var(--color-muted);
  line-height: 1.6;
}

/* News Section */
.latest-insights {
  background: var(--color-white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.insight-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

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

.insight-card.loading {
  opacity: 0.7;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.insight-date {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.insight-card p {
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-sources {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e1e5e9;
}

.news-sources a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-sources a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--color-gradient);
  color: var(--color-white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: var(--color-white);
  color: var(--primary);
}

.cta-buttons .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.cta-buttons .btn-outline:hover {
  background: var(--color-white);
  color: var(--primary);
}

/* Footer */
.footer {
  position: relative;
  background: var(--secondary);
  color: var(--color-white);
  padding: 80px 0 30px;
  overflow: hidden;
}

.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
  background: var(--secondary);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.email-link,
.linkedin-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.email-link:hover,
.linkedin-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

.email-link svg,
.linkedin-link svg {
  width: 20px;
  height: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
  font-family: 'Poppins', sans-serif;
}

.cookie-text p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  nav {
    order: 3;
    width: 100%;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 100%;
    max-width: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .header-cta {
    flex-direction: column;
    width: 100%;
  }

  .header-phone,
  .header-email {
    width: 100%;
    text-align: center;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
