/* ===== CSS RESET & NORMALIZE ===== */
html { box-sizing: border-box; font-size: 16px; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
:focus { outline: 2px solid #317D4B; outline-offset: 2px; }

/* ===== ROOT VARIABLES ===== */
:root {
  --color-primary: #1A2344;
  --color-secondary: #317D4B;
  --color-accent: #F7F7FA;
  --color-bg: #fff;
  --color-muted: #ECECF1;
  --color-border: #DDDCE2;
  --color-text: #161616;
  --color-headings: #1A2344;
  --color-link: #317D4B;
  --color-link-hover: #274e35;
  --color-shadow: rgba(26,35,68,0.08);
  --color-btn-bg: #1A2344;
  --color-btn-bg-hover: #317D4B;
  --color-btn-text: #fff;
  --color-footer-bg: #1A2344;
  --color-footer-text: #fff;
  --font-serif: 'Merriweather', "Georgia", serif;
  --font-sans: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --container-width: 1240px;
  --radius: 12px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===== BASE TYPOGRAPHY ===== */
body {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  background: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-headings);
  line-height: 1.14;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 { font-size: 2.375rem; letter-spacing: -1px; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3125rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 600; }

p, ul, ol { font-size: 1rem; margin-bottom: 16px; color: var(--color-text); max-width: 720px; }
a { color: var(--color-link); transition: color var(--transition); }
a:hover, a:focus { color: var(--color-link-hover); text-decoration: underline; }
strong { font-weight: 600; color: var(--color-primary); }

/* ===== LAYOUT & CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}

.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--color-bg); border-radius: var(--radius); box-shadow: 0 2px 12px var(--color-shadow); }
.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: #fff; border-radius: var(--radius); box-shadow: 0 2px 12px var(--color-shadow); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===== HEADER ===== */
header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img { height: 44px; width: auto; display: block; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 7px 0 5px 0;
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition);
  margin-top: 3px;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.btn-primary {
  display: inline-block;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 28px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-left: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-btn-bg-hover);
  color: #fff;
  box-shadow: 0 4px 24px var(--color-shadow);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 22px;
  transition: color var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-secondary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,35,68,0.98);
  color: var(--color-footer-text);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  padding: 34px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 16px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.375rem;
  font-family: var(--font-serif);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), background var(--transition);
  border-radius: 5px;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: rgba(49,125,75,0.1);
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .main-nav { gap: 20px; }
}
@media (max-width: 900px) {
  header .container { padding: 0 14px; }
  .main-nav { gap: 14px; }
  .btn-primary { margin-left: 8px; padding: 8px 18px; }
}

@media (max-width: 768px) {
  header .container { height: 60px; }
  .main-nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== HERO SECTIONS ===== */
.hero, .hero-blog, .hero-contact {
  background: linear-gradient(90deg, #f7f7fa 60%, #ececf1 100%);
  padding: 48px 0 34px 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hero h1, .hero-blog h1, .hero-contact h1 {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.hero h2, .hero-blog h2, .hero-contact h2 {
  font-size: 1.15rem;
  color: #49496d;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero .btn-primary { margin-top: 14px; }
@media (max-width: 600px) {
  .hero, .hero-blog, .hero-contact {
    padding: 30px 0 16px 0;
  }
  .hero h1, .hero-blog h1, .hero-contact h1 { font-size: 1.48rem; }
  .hero h2, .hero-blog h2, .hero-contact h2 { font-size: 1.02rem; }
}

/* ===== FEATURES SECTION ===== */
.features, .features-about, .features-process {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 40px;
}
.features .content-wrapper ul,
.features-about .content-wrapper ul,
.features-process .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.features .content-wrapper ul li,
.features-about .content-wrapper ul li,
.features-process .content-wrapper ul li {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 0px 10px var(--color-shadow);
  flex: 1 1 230px;
  min-width: 200px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), background var(--transition);
}
.features .content-wrapper ul li:hover {
  box-shadow: 0 4px 24px var(--color-shadow);
  background: #f1f1f7;
}
.features img, .features-about img, .etapy-pracy img { width: 40px; height: 40px; margin-bottom: 8px; }

/* ===== ABOUT SECTION ===== */
.about, .about-details {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 40px;
  padding: 40px 20px;
}
.about ul, .about-details ul {
  margin-top: 16px;
  margin-left: 18px;
  display: flex; flex-direction: column; gap: 12px;
}

/* ===== SERVICES/UNIQUE FEATURES ===== */
.services, .services-teaser, .unique-features {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 40px;
  padding: 40px 20px;
}
.services .content-wrapper ul,
.unique-features .content-wrapper ul {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 12px; }
.services .content-wrapper ul li {
  flex: 1 1 260px;
  min-width: 215px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 24px 16px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--transition), background var(--transition);
}
.services .content-wrapper ul li:hover {
  background: #f1f1f7;
  box-shadow: 0 4px 14px var(--color-shadow);
}

.services .content-wrapper ol {
  margin-top: 16px; margin-bottom: 16px; padding-left: 18px; }
.services .content-wrapper ol li {
  font-size: 1rem; margin-bottom: 8px; color: #444;
}

.unique-features .content-wrapper ul li {
  padding: 12px 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 40px; padding: 40px 20px;
}
.team ul { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 16px; }
.team ul li {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px 16px;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
}

/* ===== BLOG LIST ===== */
.blog-list .content-wrapper { gap: 20px; }
.blog-list .post-preview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border var(--transition);
}
.blog-list .post-preview:hover {
  box-shadow: 0 3px 17px var(--color-shadow);
  border-left: 4px solid var(--color-secondary);
}
.blog-list .post-preview h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-family: var(--font-serif);
}
.blog-list .post-preview span {
  font-size: 0.92rem;
  color: #7c827b;
}

/* ===== CTA FINAL/BLOG/CONTACT ===== */
.cta-final, .cta-blog-newsletter, .cta-contact {
  margin-bottom: 52px;
  background: linear-gradient(90deg, #f7f7fa 70%, #e5e5ed 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-final h2, .cta-blog-newsletter h2, .cta-contact h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
}
.cta-final .btn-primary,
.cta-blog-newsletter .btn-primary,
.cta-contact .btn-primary {
  margin-top: 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials, .testimonials-projects {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 40px;
  padding: 40px 20px;
}
.testimonials .content-wrapper, .testimonials-projects .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-card p {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 7px;
  letter-spacing: -0.2px;
}
.testimonial-info {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  margin-top: 6px;
}
.testimonial-card:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 16px var(--color-shadow);
}

/* ===== PROJECTS ===== */
.realizacje-projects .content-wrapper { gap: 24px; }
.project-card {
  background: #fff;
  padding: 26px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--transition), border var(--transition);
}
.project-card:hover {
  box-shadow: 0 6px 20px var(--color-shadow);
  border-left: 4px solid var(--color-secondary);
}
.project-card h3 { color: var(--color-primary); }
.project-card ul { margin-left: 15px; margin-top: 7px; }

/* ===== CONTACT INFO ===== */
.contact-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.contact-info ul li {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-info ul img { width: 21px; height: 21px; margin-right: 6px; }
.map-placeholder {
  background: var(--color-muted);
  border-radius: 6px;
  padding: 18px 16px;
  margin-top: 16px;
}
.map-placeholder h3 { font-size: 1.03rem; margin-bottom: 4px; }

/* ===== TEXT SECTIONS (for policies etc) ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.text-section h3, .text-section h4 { margin-bottom: 6px; }
.text-section ul { margin-left: 15px; margin-bottom: 8px; }
.text-section ul li { font-size: 1rem; margin-bottom: 5px; }

/* ===== THANK YOU ===== */
.thank-you {
  background: #f7f7fa;
  text-align: center;
  padding: 60px 18px 60px 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin: 60px 0 40px 0;
}
.thank-you h1 {
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.thank-you .btn-primary { margin-top: 22px; }

/* ===== FOOTER ===== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 38px 0 24px 0;
  margin-top: 46px;
  font-size: 0.97rem;
}
footer .container {
  flex-direction: row; flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color var(--transition);
  opacity: 0.93;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--color-secondary); opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 7px; }
.footer-contact p { color: #e5e8f0; display: flex; align-items: center; gap: 6px; font-size: 1rem; background: none; }
.footer-contact img { width: 18px; height: 18px; }
.footer-branding { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.footer-branding img { width: 58px; height: auto; margin-bottom: 4px; }
.footer-branding span { color: #cedbe6; font-size: 0.92rem; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-branding { align-items: flex-start; }
}

/* ====== RESPONSIVE FLEXBOXS ====== */
@media (max-width: 768px) {
  .container { padding: 0 9px; }
  .content-wrapper { padding: 0; }
  .content-grid, .card-container, .team ul, .features .content-wrapper ul, .services .content-wrapper ul, .features-about .content-wrapper ul, .realizacje-projects .content-wrapper { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-contact, .footer-branding { align-items: flex-start; }
}

/* Make cards full width for mobile */
@media (max-width: 600px) {
  .card, .project-card, .testimonial-card, .blog-list .post-preview, .team ul li, .features .content-wrapper ul li, .services .content-wrapper ul li { min-width: 0; width: 100%; }
  .section, .about, .about-details, .services, .unique-features, .realizacje-projects, .testimonials, .testimonials-projects, .cta-final { padding: 24px 7px; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.rounded { border-radius: var(--radius); }
.mb-20 { margin-bottom: 20px; }

/* ===== BUTTONS (Brand and Cookie) ===== */
button, .btn-primary, .cookie-btn {
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn {
  background: var(--color-secondary);
  border: none;
  color: #fff;
  padding: 10px 22px;
  font-size: 1.07rem;
  font-family: var(--font-serif);
  font-weight: 500;
  border-radius: 20px;
  margin-left: 12px;
  margin-right: 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-btn.reject {
  background: #ececf1;
  color: var(--color-primary);
  border: 1px solid #d3d3e1;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-btn-bg-hover);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e1e1e1;
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--color-primary);
  border-top: 2px solid var(--color-secondary);
  box-shadow: 0 -2px 24px var(--color-shadow);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  font-size: 1.01rem;
  animation: slideup 0.5s cubic-bezier(.4,0,.2,1);
  gap: 18px;
}
.cookie-banner p { margin: 0; max-width: 640px; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
@keyframes slideup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 9px; }
  .cookie-banner .cookie-actions { margin-top: 12px; }
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5010;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,35,68,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.32s cubic-bezier(.4,0,.2,1);
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  max-width: 420px;
  width: 97vw;
  box-shadow: 0 6px 32px var(--color-shadow);
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popin 0.33s cubic-bezier(.4,0,.2,1);
}
@keyframes popin {
  0% { transform: scale(0.89); opacity: 0; }  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 9px 0 0 0;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .category-row input[type="checkbox"] {
  width: 22px; height: 22px;
}
.cookie-modal .category-row label { font-family: var(--font-serif); color: var(--color-primary); }
.cookie-modal .category-essential label {
  color: var(--color-secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 13px;
}
.cookie-modal .modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 1.35rem; color: var(--color-primary); cursor: pointer;
}

@media (max-width: 500px) {
  .cookie-modal { padding: 22px 10px 16px 10px; }
  .cookie-modal h2 { font-size: 1.05rem; }
  .cookie-modal .cookie-category-list { margin-top: 1px; }
}

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
a, .btn-primary, button, .mobile-nav a, .feature-item, .cookie-btn, .testimonial-card, .card, .project-card, .blog-list .post-preview {
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), border var(--transition);
}
.testimonial-card:hover, .project-card:hover, .blog-list .post-preview:hover,
.team ul li:hover, .features .content-wrapper ul li:hover {
  transform: translateY(-2px) scale(1.025);
}

::-webkit-scrollbar{
  width: 8px;
  background: var(--color-muted);
}
::-webkit-scrollbar-thumb{
  background: #caccdf;
  border-radius: 8px;
}

/* ===== SLY MINGLE BRAND PERSONALITY & ELEGANCE ===== */
section, .section {
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
h1, h2, h3, h4 {
  letter-spacing: -0.3px;
}
p, li, ul, ol {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.65;
}

@media (max-width: 600px) {
  section, .section { padding: 20px 5px; margin-bottom: 32px; }
}
