/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #E3000B;
  --color-dark: #131416;
  --color-light: #ededed;
  --color-light-gray: #f6f6f6;
  --color-white: #ffffff;
  --font-family: 'Inter', sans-serif;
  --max-width: 1200px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
}

.max-width-lg {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.max-width-md {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.padding {
  padding: 60px 20px;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

/* ==========================================
   HEADER
   ========================================== */
.header-main {
  background: var(--color-primary);
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  top: 0;
  z-index: 1000;
}

.header-main nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: block;
  max-width: 200px;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* ==========================================
   HOMEPAGE SPECIFIC STYLES
   ========================================== */

/* Content Blocks */
.content-block {
  padding: 60px 20px;
}

.bg-color-light {
  background: var(--color-white);
}

.bg-color-custom {
  background: var(--color-light);
}

.bg-color-light-gray {
  background: var(--color-light-gray);
}

.bg-color-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Block 1 - Unsere Tätigkeit */
.block-1 {
  background: var(--color-white);
}

.block-1 h2, 
.block-1 h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.block-1 h3 {
  font-size: 1.5rem;
}

.block-1 .paragraph {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.block-1 hr {
  max-width: 200px;
  margin: 40px auto;
  border: none;
  border-top: 1px solid #e0e0e0;
}

/* Block 2 - Shop Cards */
.block-2 {
  background: var(--color-light);
}

.block-2 h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

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

.shop-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shop-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-weight: 700;
}

.shop-description {
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
  color: #666;
}

.shop-description strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* Block 3 - Kontakt Intro */
.block-3 {
  background: var(--color-light-gray);
}

.block-3 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-intro {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Block 4 - Kontakt Details */
.block-4 {
  background: var(--color-primary);
  color: var(--color-white);
}

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

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

.contact-item p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-item strong {
  font-size: 1.125rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-item a {
  color: var(--color-white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Links in rotem Block ohne externe Icons */
.block-4 a::after {
  display: none !important;
}

/* ==========================================
   BUTTONS
   ========================================== */
.button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  text-align: center;
  cursor: pointer;
}

.button:hover {
  background: #c00009;
  border-color: #c00009;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 0, 11, 0.3);
  text-decoration: none;
}

.button-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.button-secondary:hover {
  background: #c00009;
  border-color: #c00009;
}

/* Icons in Buttons deaktivieren */
.button::before,
.button::after {
  display: none !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-white);
  border-top: 1px solid #e0e0e0;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  color: #666;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================
   LEGAL PAGES (Impressum & Datenschutz)
   ========================================== */

.legal-page {
  padding: 60px 20px;
  background: var(--color-white);
}

.page-header {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-light);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-dark);
  font-weight: 900;
}

.page-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #666;
}

.last-updated {
  margin-top: 20px;
  color: #999;
  font-style: italic;
}

/* Inhaltsverzeichnis */
.table-of-contents {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.table-of-contents h2 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.table-of-contents ol {
  margin-left: 20px;
}

.table-of-contents li {
  margin-bottom: 10px;
}

.table-of-contents a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.table-of-contents a:hover {
  color: var(--color-primary);
}

/* Rechtliche Abschnitte */
.legal-section {
  margin-bottom: 50px;
}

.legal-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--color-dark);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light);
  font-weight: 700;
}

.legal-section h3 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-weight: 700;
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-section li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Section Content */
.section-content {
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 15px;
}

/* Subsections */
.subsection {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--color-light);
}

/* Firmeninformationen */
.company-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.company-address,
.company-contact,
.company-registration {
  margin-bottom: 20px;
}

/* Service-Blocks */
.service {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Kontaktbox */
.contact-box {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.contact-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-box p {
  margin-bottom: 15px;
}

.contact-box .button {
  background: var(--color-white);
  color: var(--color-primary);
  margin-top: 20px;
}

.contact-box .button:hover {
  background: var(--color-light);
}

/* Links in rechtlichen Seiten */
.legal-page a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-page a:hover {
  color: #c00009;
}

/* ==========================================
   EXTERNAL LINKS
   ========================================== */

/* Externe Links mit Icon kennzeichnen */
a[target="_blank"]:not(.button):not(.logo):not(.footer-social a)::after {
  content: " ↗";
  font-size: 0.75em;
  opacity: 0.5;
  display: inline-block;
  margin-left: 3px;
  transition: opacity 0.3s ease;
  vertical-align: super;
}

a[target="_blank"]:not(.button):not(.logo):not(.footer-social a):hover::after {
  opacity: 0.8;
}

/* E-Mail-Links OHNE Icon */
a[href^="mailto:"]::before {
  display: none;
}

/* Telefon-Links OHNE Icon */
a[href^="tel:"]::before {
  display: none;
}

/* PDF-Links mit dezenten Icon */
a[href$=".pdf"]:not(.button)::after {
  content: " 📄";
  font-size: 0.75em;
  opacity: 0.5;
  margin-left: 3px;
}

a[href$=".pdf"]:not(.button):hover::after {
  opacity: 0.8;
}

/* External-Icon aus JavaScript entfernen */
.external-icon {
  display: none !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  /* Shop Grid */
  .shop-grid {
    grid-template-columns: 1fr;
  }
  
  .block-2 h2 {
    font-size: 1.5rem;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social ul {
    justify-content: center;
  }
  
  /* Legal Pages */
  .page-header h1 {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .table-of-contents {
    padding: 20px;
  }
  
  .subsection {
    padding-left: 15px;
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .block-2 h2,
  .block-3 h2 {
    font-size: 1.5rem;
  }
  
  .padding {
    padding: 40px 15px;
  }
}

/* ==========================================
   BLOCK 4 - KONTAKT (Hellgrauer Hintergrund)
   ========================================== */

/* Überschreibe den roten Hintergrund */
.block-4 {
  background: var(--color-light-gray) !important;
  color: var(--color-dark) !important;
}

.block-4 .contact-item a {
  color: var(--color-primary);
  text-decoration: underline;
}

.block-4 .contact-item a:hover {
  color: #c00009;
}

/* ==========================================
   BLOCK 5 - SOCIAL MEDIA
   ========================================== */

.block-5 {
  background: var(--color-light);
}

.block-5 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-intro {
  max-width: 700px;
  margin: 20px auto 40px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.social-links-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.social-link-item {
  background: var(--color-white);
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link-item a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.social-link-item a:hover {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .social-links-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ERROR PAGE (404)
   ========================================== */

.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: 60px 20px;
}

.error-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.error-content {
  padding: 40px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out;
}

.error-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease-out;
}

.error-message {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out;
}

.error-actions {
  animation: fadeInUp 1.2s ease-out;
}

.error-actions .button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.125rem;
}

/* Animationen */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .error-code {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .error-message {
    font-size: 1rem;
  }
  
  .error-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: 4rem;
  }
  
  .error-title {
    font-size: 1.25rem;
  }
}

/* Error Links */
.error-links {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  animation: fadeIn 1.4s ease-out;
}

.error-links-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.error-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-links li {
  margin-bottom: 10px;
}

.error-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.error-links a:hover {
  color: #c00009;
  text-decoration: underline;
}

/* ==========================================
   NEBELBOX SPECIFIC STYLES
   ========================================== */

/* Section Heading */
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Content Rows (Alternating Image/Text) */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-row-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-col-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.content-text p {
  margin-bottom: 15px;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Location & Opening Hours */
.location-intro {
  max-width: 700px;
  margin: 20px auto 60px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.opening-hours-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.opening-hours-block {
  text-align: center;
}

.opening-hours-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.opening-hours-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Block 6 - Kontakt (Rot) */
.block-6 {
  background: var(--color-primary);
  color: var(--color-white);
}

.block-6 .contact-item a {
  color: var(--color-white);
  text-decoration: underline;
}

.block-6 .contact-item a:hover {
  opacity: 0.8;
}

.block-6 a::after {
  display: none !important;
}

/* ==========================================
   RESPONSIVE - NEBELBOX
   ========================================== */

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .content-row,
  .content-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .opening-hours-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
  
  .content-col-text h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================
   NEBELBOX SPECIFIC STYLES
   ========================================== */

/* Section Heading */
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Content Rows (Alternating Image/Text) */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-row-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-col-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.content-text p {
  margin-bottom: 15px;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Location & Opening Hours */
.location-intro {
  max-width: 700px;
  margin: 20px auto 30px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.location-map-link {
  margin-bottom: 60px;
}

.opening-hours-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.opening-hours-block {
  text-align: center;
}

.opening-hours-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.opening-hours-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Block 6 - Kontakt (HELLGRAU statt rot) */
.block-6 {
  background: var(--color-custom) !important;
  color: var(--color-dark);
}

.block-6 .contact-item a {
  color: var(--color-primary);
  text-decoration: underline;
}

.block-6 .contact-item a:hover {
  color: #c00009;
}

/* Block 7 - Social Media */
.block-7 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.social-media-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link-facebook:hover {
  color: #1877f2;
}

.social-link-instagram:hover {
  color: #e4405f;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link::after {
  display: none !important;
}

/* ==========================================
   RESPONSIVE - NEBELBOX
   ========================================== */

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .content-row,
  .content-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .opening-hours-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-media-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
  
  .content-col-text h2 {
    font-size: 1.5rem;
  }
}