
:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --accent: #14b8a6;
  --accent-2: #f59e0b;
  --text: #172033;
  --text-muted: #667085;
  --bg-light: #f7f9fc;
  --bg-soft: #f1f6f8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.86);
  --border: rgba(20, 25, 40, 0.08);
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 28px 80px rgba(79, 70, 229, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1280px;
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 88px;
}

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

img {
  max-width: 100%;
  display: block;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.bg-blur-1 {
  width: 320px;
  height: 320px;
  background: var(--primary-light);
  top: 70px;
  left: -80px;
}

.bg-blur-2 {
  width: 360px;
  height: 360px;
  background: var(--accent);
  bottom: 80px;
  right: -120px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section.soft {
  background: linear-gradient(180deg, rgba(20,184,166,0.04), rgba(79,70,229,0.03));
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(20, 184, 166, 0.28);
  background: rgba(20, 184, 166, 0.07);
  color: #0f8f82;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* NAVBAR */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 2rem;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: -0.03em;
}

.logo-img {
  max-height: 46px;
  width: auto;
}

.logo span {
  background: linear-gradient(135deg, #1e293b 0%, #3478f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.nav-list a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

/* BUTTONS */
.btn,
.btn-primary,
.btn-secondary,
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6258ff 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(79,70,229,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(79,70,229,0.32);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(79,70,229,0.2);
}

.btn-gradient,
.submit-btn {
  background: linear-gradient(90deg, var(--primary) 0%, #4b66ff 45%, #13b7a7 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(79,70,229,0.22);
}

/* HERO */
.hero {
  padding: 42px 0 36px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 950;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #3c7df4 0%, #76b7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: #3b82f6;
}

.stat span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.visual-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg);
  border-radius: 26px;
  padding: 16px;
  backdrop-filter: blur(16px);
}

.visual-top img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.visual-bottom {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.mini-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.mini-kicker {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 800;
}

.mini-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.mini-big {
  font-size: 2rem;
  font-weight: 900;
  color: #3b82f6;
}

.mini-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.floating-pill {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.floating-pill-1 {
  top: 24px;
  right: -18px;
}

.floating-pill-2 {
  left: -18px;
  bottom: 36px;
}

/* TICKER */
.ticker {
  border-top: 1px solid rgba(245,158,11,0.28);
  border-bottom: 1px solid rgba(245,158,11,0.28);
  background: rgba(245,158,11,0.06);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 0.85rem 1.2rem;
  animation: tickerMove 28s linear infinite;
  font-size: 0.9rem;
  color: #b26a00;
  font-weight: 700;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-35%); }
}

/* GRIDS / CARDS */
.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card,
.point-card,
.review-card,
.news-card,
.contact-info-card,
.contact-form-card,
.image-card,
.advice-banner,
.register-box {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,25,40,0.08);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.feature-card {
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.image-card:hover,
.news-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 24px rgba(79,70,229,0.18);
  margin-bottom: 18px;
}

.feature-icon.small {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 0.82rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-card h3,
.point-card h3,
.contact-form-card h3,
.news-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p,
.point-card p,
.review-card p,
.news-card p {
  color: var(--text-muted);
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.info-strip {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
}

.info-strip a {
  color: var(--primary);
  font-weight: 700;
}

/* IMAGE SERVICE CARDS */
.image-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(29,34,68,0.82) 100%);
  color: #fff;
}

.image-card-overlay h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.advice-banner {
  margin-top: 24px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.advice-left {
  display: flex;
  gap: 14px;
  align-items: center;
}

.advice-left p {
  color: var(--text-muted);
}

/* DEKKER */
.dekker-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 40px;
  align-items: center;
}

.dekker-copy h2,
.about-copy h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.dekker-copy h2 span,
.about-copy h2 span {
  color: #3b82f6;
}

.dekker-copy p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.benefit-list li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  position: relative;
}

.benefit-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: absolute;
  left: 0;
  top: 10px;
}

.benefit-list strong {
  font-size: 1rem;
}

.benefit-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.dekker-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff, #f7faff);
  padding: 18px;
}

.dekker-card img {
  border-radius: 20px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ABOUT */
.about-section {
  background: linear-gradient(180deg, #eef8f7 0%, #f7fbfb 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.about-photo,
.about-year {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid var(--border);
}

.about-photo.big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  max-height: 420px;
}

.about-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-photo.small img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  max-height: 200px;
  object-fit: cover;
}

.about-year {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-year strong {
  font-size: 2.4rem;
  font-weight: 950;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 8px;
}

.about-year span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.about-year p,
.about-copy p {
  color: var(--text-muted);
}

.about-copy {
  max-width: 640px;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 12ch;
}

.about-copy p {
  margin-bottom: 14px;
  max-width: 58ch;
}

.about-points {
  margin: 22px 0 0;
  gap: 14px;
}

.point-card {
  padding: 16px;
}

.point-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.point-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

/* NEWS */
.news-card {
  overflow: hidden;
}

.news-card-top {
  height: 96px;
  background: linear-gradient(135deg, var(--primary) 0%, #3f4ef4 55%, #4a52d7 100%);
}

.news-card-body {
  padding: 22px;
}

.news-date {
  color: #13a89d;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* REVIEWS */
.rating-line {
  text-align: center;
  font-weight: 800;
  margin-bottom: 24px;
  color: #a96d00;
}

.review-card {
  padding: 24px;
}

.review-card p {
  margin-bottom: 18px;
}

.review-card strong {
  display: block;
  font-weight: 800;
}

.review-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  padding: 26px;
}

/* 🔥 FIX HIER */
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ICON strak maken */
.feature-icon.small {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* tekstblok netjes */
.contact-row div:last-child {
  display: flex;
  flex-direction: column;
}

/* titels */
.contact-row h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  font-weight: 600;
}

/* tekst */
.contact-row p,
.contact-row a {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* optioneel: nette scheiding */
.contact-row:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.register-box {
  margin-top: 24px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.register-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.register-box span {
  color: var(--text-muted);
}

.register-box strong {
  font-weight: 800;
}
.trust-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.trust-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 0.94rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  box-shadow: inset 0 1px 1px rgba(17,24,39,0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(79,70,229,0.32);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.08);
}

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

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input {
  width: auto;
}

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

/* FOOTER */
footer {
  background: rgba(255,255,255,0.92);
  border-top: 1px solid var(--border);
  padding: 3.2rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand-img,
.footer-brand img {
  max-height: 90px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p,
.footer-links a {
  color: var(--text-muted);
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

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

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

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

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.86rem;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-grid,
  .dekker-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 900px) {
  .nav-container {
    padding: 1rem 1.2rem;
  }

  .hamburger {
    display: block;
    z-index: 1002;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(17,24,39,0.08);
    padding: 0.8rem 1rem 1rem;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    margin: 0.15rem 0;
  }

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.9rem 0.8rem;
    border-radius: 12px;
  }

  .nav-list a:hover {
    background: #f6f8fc;
  }

  .nav-list a::after {
    display: none;
  }

  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-stack {
    grid-template-rows: auto auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 82px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-actions,
  .hero-stats,
  .visual-bottom,
  .form-row,
  .info-strip,
  .advice-banner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .visual-top img,
  .dekker-card img {
    height: auto;
  }

  .floating-pill {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }

  .about-copy {
    max-width: 100%;
  }

  .about-copy h2 {
    max-width: 100%;
  }

  .about-photo.big img {
    min-height: 280px;
    max-height: 320px;
  }

  .about-photo.small img {
    min-height: 160px;
    max-height: 180px;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .section-head h2,
  .dekker-copy h2,
  .about-copy h2 {
    font-size: 2rem;
  }

  .feature-card,
  .contact-info-card,
  .contact-form-card,
  .review-card,
  .point-card {
    padding: 20px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-gradient,
  .submit-btn {
    width: 100%;
  }
}
