@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1A6BAA;
  --primary-dark: #0D4F80;
  --primary-light: #2196F3;
  --accent: #F47C20;
  --accent-dark: #D4660E;
  --light-bg: #EEF4FB;
  --text-dark: #1C2B3A;
  --text-muted: #6B7A8D;
  --border: #D6E4F0;
  --white: #FFFFFF;
  --success: #27AE60;
  --shadow: 0 4px 20px rgba(26, 107, 170, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ===================== HEADER ===================== */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

nav { display: flex; align-items: center; }

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

nav ul li a {
  display: block;
  padding: 8px 13px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

nav ul li a:hover {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: 0.3s; }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, #0A2E50 0%, var(--primary-dark) 45%, var(--primary) 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero h1 span { color: #FFD166; }

.hero p {
  font-size: 1.1rem;
  margin-bottom: 38px;
  opacity: 0.88;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 17px 44px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(244,124,32,0.45);
}
.btn-hero:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244,124,32,0.5);
  color: var(--white);
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  opacity: 0.88;
  font-weight: 500;
}
.trust-item .ti { font-size: 1.2rem; }

/* ===================== GENERAL ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: 75px 24px; }

.section-title { text-align: center; margin-bottom: 52px; }

.section-title .tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================== STEPS ===================== */
.steps { background: var(--light-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 950px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: 18px;
  padding: 38px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(244,124,32,0.35);
}

.step-icon { font-size: 3rem; margin: 12px 0 20px; }

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ===================== PRODUCTS ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.28s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26,107,170,0.14);
  color: var(--text-dark);
}

.product-icon { font-size: 2.8rem; margin-bottom: 16px; }

.product-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-rate {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.product-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===================== FEATURES ===================== */
.features {
  background: var(--primary-dark);
  color: var(--white);
}

.features .section-title .tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.features .section-title h2 { color: var(--white); }
.features .section-title p { color: rgba(255,255,255,0.7); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: background 0.2s;
}

.feature-item:hover { background: rgba(255,255,255,0.1); }

.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-item p { font-size: 0.85rem; opacity: 0.75; line-height: 1.65; }

/* ===================== STATS ===================== */
.stats { background: var(--light-bg); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
}

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item p { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }

/* ===================== LEGAL DISCLAIMER ===================== */
.legal-disclaimer {
  background: #F2F5F9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.legal-disclaimer p {
  font-size: 0.76rem;
  color: #8796A5;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
footer {
  background: #071E30;
  color: var(--white);
  padding: 56px 24px 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
  margin-bottom: 45px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.footer-logo span { color: var(--accent); }

.footer-desc { font-size: 0.85rem; opacity: 0.65; line-height: 1.75; margin-bottom: 20px; }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; opacity: 0.5; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,124,32,0.3); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ===================== PAGE HERO (sous-pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, #0A2E50, var(--primary));
  color: var(--white);
  padding: 65px 24px 55px;
  text-align: center;
}

.page-hero h1 { font-size: 2.3rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.page-hero p { font-size: 1.08rem; opacity: 0.88; max-width: 580px; margin: 0 auto 28px; }

/* BREADCRUMB */
.breadcrumb { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 12px 24px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.83rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--primary); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ===================== CONTENT PAGES ===================== */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  align-items: start;
}

.content-main h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-main h2:first-child { margin-top: 0; }

.content-main p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }

.content-main ul { list-style: none; margin-bottom: 22px; }
.content-main ul li {
  padding: 9px 0 9px 26px;
  color: var(--text-muted);
  position: relative;
  line-height: 1.65;
  font-size: 0.97rem;
}
.content-main ul li::before { content: "✓"; color: var(--success); font-weight: 700; position: absolute; left: 0; }

/* INFO BOX */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  margin: 24px 0;
}
.info-box p { font-size: 0.9rem; color: var(--text-dark); margin: 0; }

/* SIDEBAR */
.sidebar-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.sidebar-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.sidebar-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.65; }

.sidebar-rates { margin: 18px 0; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.rate-row:last-child { border-bottom: none; }
.rate-label { color: var(--text-muted); }
.rate-value { font-weight: 700; color: var(--primary); }

/* ===================== SIMULATION PAGE ===================== */
.sim-section { background: var(--light-bg); }

.form-container {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 50px 50px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(26,107,170,0.1);
}

.form-steps-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 42px;
  gap: 0;
}

.fstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fstep-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  transition: 0.3s;
}

.fstep.active .fstep-num { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(26,107,170,0.4); }
.fstep.done .fstep-num { background: var(--success); color: var(--white); }

.fstep-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.fstep.active .fstep-label { color: var(--primary); }

.fstep-line { width: 70px; height: 2px; background: var(--border); margin: 0 6px; margin-bottom: 26px; }
.fstep-line.done { background: var(--success); }

.form-heading { margin-bottom: 30px; }
.form-heading h3 { font-size: 1.35rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.form-heading p { color: var(--text-muted); font-size: 0.9rem; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--white);
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--primary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.checkbox-wrap a { color: var(--primary); }

.form-footer { text-align: center; margin-top: 28px; }

.range-group label { display: flex; justify-content: space-between; }
.range-group label span { color: var(--primary); font-weight: 700; }
input[type="range"] { width: 100%; accent-color: var(--primary); margin-top: 8px; }

.credit-types-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 5px;
}

.ct-option {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.ct-option:hover { border-color: var(--primary); color: var(--primary); }
.ct-option.selected { border-color: var(--primary); background: var(--light-bg); color: var(--primary); }
.ct-option .ct-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 2px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q:hover { background: var(--light-bg); }
.faq-q::after { content: "＋"; font-size: 1.2rem; color: var(--primary); }

.faq-a {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero { background: var(--light-bg); padding: 70px 24px; text-align: center; }
.about-hero h1 { font-size: 2.3rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
.about-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card { text-align: center; }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--light-bg);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; }
.team-card p { color: var(--text-muted); font-size: 0.86rem; }

/* ===================== MENTIONS LÉGALES ===================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h1 { font-size: 2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 30px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); margin: 36px 0 14px; }
.legal-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 12px 0; }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; padding: 0 16px; gap: 4px; }
  nav ul li a { padding: 12px 16px; }
  .nav-cta { margin-left: 0; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .credit-types-select { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.65rem; }
  .section-title h2 { font-size: 1.6rem; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-container { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .credit-types-select { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 18px; }
  section { padding: 55px 20px; }
}
