:root {
  --primary-color: #79856c;       /* Maslinasto-zelena boja dugmadi i elemenata */
  --primary-hover: #657158;
  --text-dark: #1b365d;           /* Elegantna tamno plava boja naslova */
  --text-muted: #536273;
  --bg-color: #fafbf9;
  --font-family: 'Georgia', serif; /* Serif font za naslove po uzoru na dizajn */
  --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-dark);
}

/* ZAGLAVLJE */
.header {
  background: transparent;
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: #2b5278;
  font-weight: 600;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.8rem;
  letter-spacing: 3.5px;
  color: #2b5278;
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn-contact {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 0.65rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-contact:hover {
  background-color: var(--primary-hover);
}

/* HERO SEKCIJA (Za index.html) */
.hero {
  position: relative;
  min-height: 82vh;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

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

.subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2b5278;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: var(--font-family);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  color: #3e4e5e;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(121, 133, 108, 0.3);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(121, 133, 108, 0.4);
}

.heart-icon {
  width: 18px;
  height: 18px;
}

/* MOBILNI PRIKAZ I RESPONZIVNOST */
.hamburger { display: none; }

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1.2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .nav-links.active {
    display: flex !important; 
  }

  .btn-contact {
    display: inline-block;
  }
}

/* --- GENERALNI PAGE CONTAINER --- */
.page-container {
  max-width: 1200px;
  margin: 3.5rem auto;
  padding: 0 2rem;
}

.page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.page-header h1 {
  font-family: var(--font-family);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.section-description {
  color: #556677;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================
   STILOVI ZA STRANICU LEISTUNGEN
   ========================================================== */
.leistungen-page-container {
  max-width: 1280px;
  margin: 2.5rem auto 5rem;
}

.leistungen-header h1 {
  font-family: var(--font-family);
  font-size: 3.4rem;
  color: #1b365d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #79856c;
  margin-bottom: 1rem;
}

.leistungen-header .section-description {
  color: #3e4e5e;
  font-size: 1.05rem;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #ebede8;
  border-radius: 16px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f1f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: #667459;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b365d;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-card p {
  color: #4a5a6a;
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-banner {
  background-color: #f2f4ee;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.services-banner-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-banner-icon svg {
  width: 40px;
  height: 40px;
  stroke: #667459;
}

.services-banner-content p {
  color: #1b365d;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================
   STILOVI ZA STRANICU ÜBER MICH
   ========================================================== */
.about-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-sidebar {
  text-align: center;
  background-color: #f3f5f1;
  padding: 3rem 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.profile-img-container,
.about-profile-container,
.about-image-container {
  width: 190px !important;
  height: 190px !important;
  margin: 0 auto 2rem !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
  display: block !important;
}

.profile-img,
.about-profile-img,
.about-sidebar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.about-sidebar h2 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-sidebar .title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.about-sidebar .subtitle-tag {
  font-size: 0.9rem;
  color: #6a7988;
}

.about-content h1 {
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.quote-text {
  font-family: var(--font-family);
  font-style: italic;
  font-size: 1.22rem;
  color: #5b6e4e;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.8rem;
  color: #3b4c5e;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-sidebar {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .about-content h1 {
    font-size: 2.4rem;
  }
}

/* ==========================================================
   STILOVI ZA STRANICU FAQ
   ========================================================== */
.faq-page-container {
  max-width: 1180px;
  margin: 2rem auto 5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-family: var(--font-family);
  font-size: 3.2rem;
  color: #1a324b;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.faq-header .section-description {
  color: #8c9a86;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.faq-card {
  background-color: #fafcf8;
  border: 1px solid #f0f3eb;
  border-radius: 16px;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.faq-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #f0f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.faq-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke: #728266;
}

.faq-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a324b;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.card-line {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #8c9a86;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.faq-card p {
  color: #4f5e6d;
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-banner {
  background-color: #f4f6f1;
  border-radius: 12px;
  padding: 2.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.faq-banner-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-banner-icon svg {
  width: 44px;
  height: 44px;
  stroke: #728266;
}

.faq-banner-content {
  flex-grow: 1;
  padding-left: 2rem;
  border-left: 1px solid #dcdfd8;
}

.faq-banner-content h2 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a324b;
  margin-bottom: 0.4rem;
}

.faq-banner-content p {
  color: #4f5e6d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-banner-btn {
  background-color: #7d8b72;
  color: #ffffff !important;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.faq-banner-btn:hover {
  background-color: #6a7760;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .faq-banner-content {
    padding-left: 0;
    border-left: none;
  }
}

/* --- STILOVI ZA STRANICU KONTAKT --- */
.contact-header {
  max-width: 900px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-container {
  background-color: #ffffff;
  border: 1px solid #e5e8e3;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.contact-form-container h2 {
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.form-subtext {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 1.8rem;
}

.form-subtext span {
  color: #d9534f;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #dcdfd9;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(121, 133, 108, 0.15);
}

.privacy-note {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.submit-button {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background-color: var(--primary-hover);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  border-radius: 14px;
  padding: 1.8rem 1.8rem 1.8rem 2rem;
}

.highlight-card {
  background-color: #eff3f7;
  border-left: 5px solid #2b5278;
}

.region-card {
  background-color: #f2f2ef;
  border-left: 5px solid var(--primary-color);
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.info-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
}

.region-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hp-field {
  display: none !important;
  visibility: hidden !important;
}

@media (max-width: 850px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }
}

/* ==========================================================
   STILOVI ZA STRANICU NOTFALL (NEREGULISANO DANIJE)
   ========================================================== */

.notfall-page-container {
  max-width: 1180px;
  margin: 2.5rem auto 5rem;
}

.notfall-header h1 {
  font-family: var(--font-family);
  font-size: 3.4rem;
  color: #1b365d;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.notfall-header .section-description {
  color: #4a5a6a;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Prvi red: 3 kartice */
.emergency-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
  margin-bottom: 1.8rem;
}

/* Drugi red: 2 kartice šire postavljanje */
.emergency-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

/* Osnovna kartica */
.emergency-card {
  background-color: #ffffff;
  border: 1px solid #ebede8;
  border-radius: 18px;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.015);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.emergency-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Crvena istaknuta kartica za 144 */
.emergency-card.highlight-red {
  background-color: #fffafb;
  border: 1.5px solid #f29b9b;
}

/* Gornji red kartice: ikona + bedž */
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.emergency-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-icon-circle svg {
  width: 26px;
  height: 26px;
}

.red-circle {
  background-color: #ffe6e6;
  color: #e53e3e;
}

.blue-circle, .blue-light-circle {
  background-color: #ebf3fa;
}

.green-circle {
  background-color: #eef2eb;
}

.brown-circle {
  background-color: #fbf3eb;
}

/* Bedž "24h erreichbar" */
.emergency-badge {
  background-color: #eef2ea;
  color: #657158;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.emergency-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b365d;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.emergency-card p {
  color: #536273;
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

/* Broj telefona */
.phone-number {
  font-size: 1.65rem;
  font-weight: 800;
  color: #79856c;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.phone-number:hover {
  opacity: 0.85;
}

.phone-number.urgent-red {
  color: #e53e3e;
}

/* Notice baner pri dnu */
.emergency-notice-banner {
  background-color: #f2f4ee;
  border: 1px solid #e1e6db;
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.notice-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #79856c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.notice-text p {
  color: #1b365d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notice-text p strong {
  font-size: 1rem;
}

/* Responzivni dizajn za mobilne uređaje i tablete */
@media (max-width: 992px) {
  .emergency-grid-top,
  .emergency-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .emergency-grid-top,
  .emergency-grid-bottom {
    grid-template-columns: 1fr;
  }

  .emergency-notice-banner {
    flex-direction: column;
    text-align: center;
  }
}
/* ==========================================================
   STILOVI ZA INDEX.HTML (HERO WAVE & FEATURE CARDS)
   ========================================================== */

/* Zakrivljeni talas na dnu Hero sekcije */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* Popravak boje ikone na dugmetu u Hero sekciji */
.cta-button .heart-icon {
  stroke: #ffffff;
}

/* Sekcija s karticama ispod Hero sekcije */
.feature-cards-section {
  padding: 3rem 0 5rem;
  background-color: var(--bg-color);
}

.feature-cards-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #ebede8;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f1f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Ograničavanje veličine i postavljanje boje za SVG ikone u karticama */
.feature-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke: #667459;
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b365d;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: #4a5a6a;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Responzivnost za manje ekrane */
@media (max-width: 992px) {
  .feature-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-cards-container {
    grid-template-columns: 1fr;
  }
}