/* --- BEGIN CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0F4FB;
  color: #28314A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*:focus {
  outline: 2px solid #F2C14E;
  outline-offset: 3px;
}

/* --- END CSS RESET --- */

/* --- BRAND VARIABLES (FALLBACKS) --- */
:root {
  --color-primary: #1D2D44;
  --color-secondary: #F0F4FB;
  --color-accent: #F2C14E;
  --color-dark: #28314A;
  --color-text: #21253a;
  --color-light: #fff;
  --color-shadow: rgba(39, 58, 108, 0.12);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY HIERARCHY --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.09;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: #264088;
  margin-bottom: 8px;
}

h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-dark);
}

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.22rem;
  color: #545676;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
.price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
}

/* --- GENERAL CONTAINERS & SPACING --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 4px 24px var(--color-shadow);
}

/* --- FLEXBOX FAMILIES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: 22px;
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(41,55,92,0.18);
  transform: translateY(-5px) scale(1.018);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAF7ED;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 300px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--color-primary);
  padding: 0;
  box-shadow: 0 2px 12px rgba(31,41,92,0.09);
  position: relative;
  z-index: 99;
}
.header-top, .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.main-nav .cta.primary {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-left: 8px;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(242,193,78,0.12);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #ffd249;
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(242,193,78,0.18);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.35rem;
  color: var(--color-accent);
  margin-left: 18px;
  cursor: pointer;
  transition: color 0.19s, transform 0.19s;
  z-index: 130;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: #ffd87a;
  transform: scale(1.11) rotate(5deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-light);
  transform: translateX(-120%);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.35rem;
  position: absolute;
  right: 28px;
  top: 18px;
  z-index: 220;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #ffd249;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 90px;
  align-items: flex-start;
  padding: 22px 34px;
}
.mobile-nav a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.011em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(120deg, #F0F4FB 0%, #FFEBA3 100%);
  min-height: 340px;
  padding: 56px 0 38px 0;
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.13;
  font-family: var(--font-display);
  letter-spacing: -2px;
}
.hero-section .cta.primary {
  margin-top: 10px;
}

/* --- FEATURES & LISTS --- */
.features-section .feature-grid,
.features-section .feature-list,
.features-section .event-types-grid,
.features-section .portrait-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 8px;
}
.feature-grid > *,
.feature-list > *,
.event-types-grid > *,
.portrait-highlights > * {
  background: #fffbe7;
  border-radius: 14px;
  padding: 28px 22px 20px 22px;
  box-shadow: 0 1px 8px rgba(196,160,26,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.16s;
}
.feature-grid > *:hover, .event-types-grid > *:hover, .feature-list > *:hover {
  box-shadow: 0 6px 26px rgba(196,160,26,0.14);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img, .feature-list img, .event-types-grid img, .portrait-highlights img {
  width: 42px;
  margin-bottom: 10px;
}

/* --- SERVICES --- */
.services-section .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin: 0 0 20px 0;
}
.services-section .service-list li {
  background: #fcf9eb;
  border-radius: 13px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 24px 18px;
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 20px;
}
.services-section .pricing-block, .services-section .service-details {
  margin-top: 10px;
}
.service-overview, .service-details, .event-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.pricing-block {
  background: #fff6d2;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  min-width: 140px;
  margin-left: 0;
  font-size: 1.05rem;
}

.services-section .pricing-table, .features-section .pricing-table {
  width: 100%;
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f2ed;
  box-shadow: 0 1px 7px rgba(196,160,26,0.11);
}
.pricing-table th, .pricing-table td {
  font-family: var(--font-display);
  font-weight: 500;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e7e5d2;
  font-size: 1rem;
}
.pricing-table tr:last-child td, .pricing-table tr:last-child th {
  border-bottom: none;
}

/* --- TESTIMONIALS & REVIEWS --- */
.testimonials-section .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #fffbe7;
  color: #2e2e22;
  box-shadow: 0 2px 14px rgba(196,160,26,0.10);
  border-left: 6px solid var(--color-accent);
  border-radius: 12px;
  padding: 24px 20px 18px 20px;
  min-width: 250px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #443822;
  font-family: var(--font-display);
}
.testimonial-author {
  align-self: flex-end;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-left: 16px;
}
.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.review-summary {
  background: #f9f5e9;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(196,160,26,0.08);
  padding: 20px 18px;
  min-width: 200px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.user-rating {
  color: #e6b000;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin-top: 4px;
}

.pro-con-list {
  margin-top: 10px;
}
.pro-con-list li {
  margin-bottom: 4px;
}

/* --- ABOUT & LEGAL TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.legal-section .text-section {
  background: #fcfbf6;
  border-radius: 14px;
  padding: 30px 20px;
  margin-top: 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.legal-section h1, .legal-section h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
}

/* --- CTAS & BUTTONS --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 20px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 2px 10px rgba(242,193,78,0.10);
  border: none;
  cursor: pointer;
}
.cta.primary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: #ffe199;
  color: var(--color-primary);
  box-shadow: 0 6px 21px rgba(242,193,78,0.13);
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: var(--color-primary);
  color: var(--color-light);
  border: 2px solid var(--color-accent);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #1D2D44;
  color: #fff;
  padding: 36px 0 16px 0;
  box-shadow: 0 -2px 12px rgba(31,41,92,0.08);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #e4e7ef;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F2C14E;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fffbe7;
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px #00000015);
  opacity: 0.85;
  transition: opacity 0.16s, transform 0.14s;
}
.social-icons img:hover {
  opacity: 1;
  transform: scale(1.12) rotate(-7deg);
}
.copyright {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.87;
  color: #e0e3ef;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffbe7;
  color: #3b320e;
  box-shadow: 0 -4px 16px rgba(196,160,26,0.13);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 18px 10px;
  flex-wrap: wrap;
  animation: fadeInUpBanner 0.5s both;
}
@keyframes fadeInUpBanner {
  from { opacity:0; transform: translateY(50px); }
  to { opacity:1; transform: none; }
}
.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #593f1d;
  max-width: 440px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 14px;
  border: none;
  padding: 11px 24px;
  font-size: 1.02rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 2px 12px rgba(242,193,78,0.11);
}
.cookie-banner .accept-all {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #ffe199;
  color: var(--color-primary);
}
.cookie-banner .reject-all {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #2f4263;
  color: #ffe199;
}
.cookie-banner .cookie-settings {
  background: #fff7cb;
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #ffe199;
  color: #776217;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,45,68,0.56);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.23s cubic-bezier(.51,.01,.53,.98) both;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 22px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 4px 40px 0 rgba(29,45,68,0.28);
  padding: 34px 22px 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.35s cubic-bezier(.47,.22,.45,1.04) both;
}
@keyframes fadeInModal {
  from { opacity:0; transform: translateY(40px) scale(0.92); }
  to { opacity:1; transform: none; }
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.cookie-category {
  background: #fcf9eb;
  border-radius: 10px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
}
.cookie-category.essential {
  opacity: 0.74;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #ffd249;
}

/* --- ADDRESS MAP (in contact) --- */
.address-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
}
.address-map img {
  width: 28px; height: 28px;
}
.address-map span {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.07rem;
}

/* --- SPECIAL & UTILITY CLASSES --- */
ul, ol {
  padding-left: 22px;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 5px;
}
a {
  color: var(--color-primary);
  transition: color 0.18s, text-decoration 0.18s;
}
a:hover, a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.thank-you-message, .next-steps {
  margin-bottom: 16px;
}

/* --- CARD-HIGHLIGHTS --- */
.expert-insights {
  background: #fff4b3;
  border-left: 5px solid var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(242,193,78,0.07);
  padding: 16px 16px 12px 18px;
  margin-top: 14px;
}
.impact-stories {
  background: #fafbe9;
  border-left: 4px solid #F2C14E;
  border-radius: 8px;
  padding: 13px 14px;
  margin-top: 10px;
}
.topic-highlights {
  background: #f7f9fd;
  border-left: 4px solid #F2C14E;
  border-radius: 8px;
  padding: 10px 14px 6px 14px;
  margin-top: 8px;
}

/* --- SUCCESS / THANK YOU PAGE --- */
.success-section h1 {
  color: #F2C14E;
  font-size: 2.2rem;
}
.success-section .cta.primary {
  margin-top: 18px;
}

/* --- MEDIA QUERIES & RESPONSIVENESS (MOBILE-FIRST) --- */
@media (max-width: 1050px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .main-nav {
    gap: 11px;
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) {
  .card-container, .review-list, .testimonial-list, .content-grid, .feature-grid, .feature-list, .event-types-grid, .portrait-highlights, .service-list, .services-section .service-list, .services-section .pricing-table, .about-section .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .main-nav {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.38rem; }
  .hero-section { padding: 32px 0 22px 0; }
  .section { padding: 24px 4px; margin-bottom: 34px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .social-icons img { width: 25px; }
  .content-wrapper { gap: 14px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
  .footer-nav { font-size: 0.98rem; gap: 6px; }
}

@media (max-width: 500px) {
  .section { border-radius: 10px; }
  .content-wrapper { padding: 0 0; }
  .footer-nav { font-size: 0.91rem; }
  .cookie-modal { padding: 20px 5vw; }
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.cta, .main-nav a, .mobile-nav a, .card, .feature-grid > *, .testimonial-card, .review-summary {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.13s;
}

/* --- ARTISTIC ACCENTS --- */
.section, .testimonial-card, .card, .feature-grid > * {
  border-bottom: 5px solid var(--color-accent);
}

.section {
  border-bottom-width: 8px;
  box-shadow: 0 12px 32px rgba(242,193,78,0.06);
  /* Artistic brush overlay (SVG as background) */
  background: linear-gradient(120deg, #fffef8 60%, #fff797 100%);
  position: relative;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  left: 70px;
  bottom: 0;
  width: 128px; height: 38px;
  background: url('../assets/brush-highlight.svg') no-repeat;
  opacity: 0.17;
  pointer-events: none;
  z-index: 1;
}

/* Decorative artistic dots - only on hero & main sections */
.hero-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 18%; left: 7vw;
  width: 75px; height: 28px;
  background: url('../assets/dots-art.svg') no-repeat;
  opacity: 0.19;
  z-index: 1;
  pointer-events: none;
}

/* Remove border/decoration on smaller devices for tightness */
@media (max-width: 520px) {
  .section, .testimonial-card, .card, .feature-grid > * {
    border-bottom-width: 3px;
  }
  .section::after, .hero-section::before { display:none; }
}
section {
  padding: 20px 0;
}

/* --- END OF CSS --- */
