
    /* ===== Variables & Reset ===== */
    :root {
      --grad-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --grad-deep: linear-gradient(135deg, #2d1b69 0%, #764ba2 100%);
      --grad-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #764ba2 100%);
      --grad-portal: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      --grad-blue: linear-gradient(135deg, #3b82f6, #2563eb);
      --grad-purple: linear-gradient(135deg, #8b5cf6, #a855f7);
      --shadow-1: 0 2px 10px rgba(0, 0, 0, 0.1);
      --shadow-2: 0 5px 20px rgba(0, 0, 0, 0.08);
      --text-dim: #666;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      min-height: 100vh;
      padding-top: 60px; /* space for fixed nav */
    }

    a { text-decoration: none; }

    /* ===== Navigation ===== */
    nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-shadow: var(--shadow-1);
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px; right: 0;
    flex-direction: column;
    background: #fff;
    width: 200px;
    padding: 20px;
    box-shadow: var(--shadow-1);
    display: none; /* hidden by default */
  }
  .nav-links.active {
    display: flex;
  }
}

    nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  background: #fff;
  box-shadow: var(--shadow-1);
}

nav .logo {
  margin-right: auto; /* pousse les liens à droite */
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 50px; /* ajuste selon ton image */
  width: auto;
}

    nav {
      position: fixed; inset: 0 0 auto 0; /* top:0; left:0; right:0 */
      display: flex; justify-content: flex-end; align-items: center;
      padding: 20px 40px; gap: 30px; background: #fff; z-index: 1000;
      box-shadow: var(--shadow-1);
    }
    nav a {
      color: var(--text-dim); font-size: 14px; font-weight: 400; transition: .3s;
      padding: 8px 16px; border-radius: 20px;
    }
    nav a:hover { color: #333; background: #f8f9fa; }
    nav a.active { background: var(--grad-primary); color: #fff; }
    
    @media (max-width: 768px) {
  nav {
    justify-content: center;   /* center everything horizontally */
    flex-wrap: wrap;
  }

  nav .logo {
    margin: 0 auto;           /* force logo to center */
    display: flex;
    justify-content: center;
    width: 100%;              /* take full width */
  }

  nav .logo img {
    height: 60px;             /* slightly smaller for mobile */
  }

  .menu-toggle {
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .nav-links {
    width: 100%;
    text-align: center;
  }
}


    /* ===== Generic Sections ===== */
    section { scroll-margin-top: 80px; }
    .container { max-width: 1200px; margin: 0 auto; }

    /* ===== Hero ===== */
    .hero { position: relative; min-height: 100vh; display: grid; place-items: center; background: var(--grad-primary); text-align: center; }
    .hero .crown { font-size: 48px; margin-bottom: 30px; color: #ffd700; }
    .hero .title { font-size: 72px; font-weight: 300; color: #fff; margin-bottom: 20px; letter-spacing: -1px; font-style: italic; }
    .hero .subtitle { color: rgba(255,255,255,.9); font-size: 18px; font-weight: 300; margin-bottom: 40px; display: inline-flex; align-items: center; gap: 10px; }
    .hero .desc { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.6; max-width: 600px; margin: 0 auto 50px; font-weight: 300; }
    .hero-service { position: relative; min-height: 90vh; display: grid; place-items: center; background: var(--grad-primary); text-align: center; }
    .hero-service .crown { font-size: 48px; margin-bottom: 30px; color: #ffd700; }
    .hero-service .title { font-size: 72px; font-weight: 300; color: #fff; margin-bottom: 20px; letter-spacing: -1px; font-style: italic; }
    .hero-service .subtitle { color: rgba(255,255,255,.9); font-size: 18px; font-weight: 300; margin-bottom: 40px; display: inline-flex; align-items: center; gap: 10px; }
    .hero-service .desc { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.6; max-width: 600px; margin: 0 auto 50px; font-weight: 300; }
    .btn-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
    .btn { padding: 12px 30px; border-radius: 25px; font-size: 14px; font-weight: 400; transition: .3s; border: 1px solid rgba(255,255,255,.3); color: #fff; display: inline-flex; align-items: center; gap: 8px; }
    .btn.primary { background: rgba(255,255,255,.2); }
    .btn.primary:hover { background: rgba(255,255,255,.3); transform: translateY(-2px); }
    .btn.secondary { background: rgba(255,255,255,.15); }
    .btn.secondary:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

    /* ===== About ===== */
    .about { background: #f8f9fa; padding: 100px 40px 80px; }
    .about-header { text-align: center; margin-bottom: 80px; }
    .about-header .crown { font-size: 40px; margin-bottom: 20px; position: relative; display: inline-block; }
    .about-header h2 { font-size: 48px; font-weight: 300; color: #764ba2; margin-bottom: 30px; font-style: italic; }
    .about-header p { font-size: 18px; line-height: 1.8; color: var(--text-dim); max-width: 800px; margin: 0 auto; font-weight: 300; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
    .card { background: #fff; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-2); }
    .card h3 { font-size: 24px; font-weight: 400; color: #333; margin-bottom: 20px; font-style: italic; }
    .card p { font-size: 16px; line-height: 1.7; color: var(--text-dim); font-weight: 300; }
    .excellence { background: var(--grad-deep); padding: 40px; border-radius: 15px; color: #fff; }
    .excellence .title { font-size: 28px; font-weight: 300; margin: 10px 0 30px; font-style: italic; }
    .excellence ul { list-style: none; }
    .excellence li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 16px; font-weight: 300; }


/* ===== Timeline (paged) — modern, aligned, elegant ===== */
/* ===== Timeline Slider (compact, refined cards) ===== */
.legacy { background: linear-gradient(135deg, #2d1b69, #764ba2); padding: 80px 40px; color: #fff; }
.legacy .header { text-align: center; margin-bottom: 36px; }
.legacy .header h2 { font-size: 44px; font-weight: 700; letter-spacing: -0.4px; }
.legacy .header p { opacity: .9; max-width: 820px; margin: 10px auto 0; }

.timeline-slider-wrap { position: relative; max-width: 1200px; margin: 0 auto; }

/* IMPORTANT: hide overflow here, not on the track */
.timeline-viewport { overflow: hidden; position: relative; }

.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 28vw, 340px);
  gap: 18px;
  padding: 8px 2px 10px;
  transform: translateX(0);                 /* controlled by JS */
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Card refined */
.t-slide {
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 18px 16px;
  backdrop-filter: blur(6px);
  transition: .25s;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.t-slide:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); box-shadow: 0 16px 36px rgba(0,0,0,.28); }

.t-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.t-year {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px;
  font-weight: 700; font-size: 13px; letter-spacing: .6px; text-transform: uppercase; color: #f5f3ff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: 9999px;
}
.t-badge { width: 8px; height: 8px; border-radius: 50%; background: #ffd700; box-shadow: 0 0 0 3px rgba(255,215,0,.18); }
.t-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.t-desc { font-size: 14px; opacity: .95; line-height: 1.55; }

/* Edge nav buttons */
.nav-btn-edge {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center; backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25); cursor: pointer; z-index: 5; transition: .2s;
}
.nav-btn-edge:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.05); }
.nav-btn-edge[disabled] { opacity: .3; pointer-events: none; }
.nav-btn-left { left: -12px; }
.nav-btn-right { right: -12px; }

/* Stats row */
.legacy-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 1000px; margin: 40px auto 0; }
.l-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 18px; text-align: center; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.l-num { font-size: 34px; font-weight: 800; }
.l-label { font-size: 14px; opacity: .9; }

@media (max-width: 768px) {
  .legacy { padding: 64px 20px; }
  .legacy .header h2 { font-size: 34px; }
  .legacy-stats { grid-template-columns: 1fr 1fr; }
}

    /* ===== Services (teaser) ===== */
    .services { background: #f8f9fa; padding: 100px 40px; text-align: center; }
    .services .title { font-size: 56px; font-weight: 600; color: #764ba2; margin-bottom: 30px; font-style: italic; display: inline-flex; align-items: center; gap: 20px; }
    .services .desc { font-size: 18px; line-height: 1.8; color: var(--text-dim); max-width: 800px; margin: 0 auto 50px; font-weight: 300; }
    .cta { display: inline-flex; align-items: center; gap: 10px; background: var(--grad-primary); color: #fff; padding: 15px 35px; border-radius: 30px; font-size: 16px; font-weight: 500; transition: .3s; box-shadow: 0 5px 20px rgba(118, 75, 162, 0.3); }
    .cta:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4); }

    /* ===== Transform ===== */
    .transform { background: var(--grad-dark); padding: 100px 40px; color: #fff; text-align: center; }
    .transform .title { font-size: 64px; font-weight: 300; margin-bottom: 40px; font-style: italic; line-height: 1.2; }
    .transform .desc { font-size: 20px; line-height: 1.8; color: rgba(255,255,255,.9); max-width: 900px; margin: 0 auto 60px; font-weight: 300; }
    .tbtn-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
    .tbtn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; border-radius: 30px; font-size: 16px; font-weight: 600; transition: .3s; border: 1px solid rgba(255,255,255,.3); }
    .tbtn.primary { background: linear-gradient(135deg, #ff9a56, #ffad56); color: #1a1a2e; box-shadow: 0 5px 20px rgba(255,154,86,.4); }
    .tbtn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,154,86,.5); }
    .tbtn.secondary { background: rgba(255,255,255,.1); color: #fff; }
    .tbtn.secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

    /* ===== Global Network ===== */
    .global { background: #f8f9fa; padding: 100px 40px; text-align: center; }
    .global .title { font-size: 56px; font-weight: 600; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 30px; font-style: italic; }
    .global .desc { font-size: 18px; line-height: 1.8; color: var(--text-dim); max-width: 800px; margin: 0 auto; font-weight: 300; }
    .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; max-width: 1200px; margin: 60px auto; }
    .stat { background: #fff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); position: relative; overflow: hidden; transition: .3s; }
    .stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-primary); }
    .stat:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
    .stat .num { font-size: 48px; font-weight: 700; margin-bottom: 15px; color: #667eea; }
    .stat .label { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 10px; }
    .stat .small { font-size: 14px; color: var(--text-dim); font-weight: 300; }
    .impact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; text-align: left; }
    .impact .panel { background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-2); }
    .impact .panel h3 { font-size: 32px; font-weight: 600; color: #333; margin-bottom: 25px; font-style: italic; }
    .impact .panel p { font-size: 16px; line-height: 1.7; color: var(--text-dim); margin-bottom: 30px; font-weight: 300; }
    .impact .panel ul { list-style: none; }
    .impact .panel li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 16px; font-weight: 400; color: #555; }
    .centers { background: var(--grad-dark); padding: 40px; border-radius: 20px; color: #fff; text-align: center; }
    .centers h4 { font-size: 28px; font-weight: 600; margin-bottom: 40px; font-style: italic; }
    .centers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
    .center { background: rgba(255,255,255,.1); padding: 20px; border-radius: 15px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); }
    .center h5 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #4facfe; }
    .center span { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 300; }

    /* ===== Client Portal ===== */
    .portal { background: var(--grad-portal); padding: 120px 40px 80px; text-align: center; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
    .portal .title { font-size: 64px; font-weight: 700; background: linear-gradient(135deg, #4c63d2, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 30px; font-style: italic; line-height: 1.2; }
    .portal .desc { font-size: 18px; line-height: 1.8; color: #6b7280; max-width: 700px; margin: 0 auto; font-weight: 400; }
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
    .s-card { background: #fff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); transition: .3s; text-align: center; border: 1px solid rgba(0,0,0,.05); }
    .s-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
    .s-card .icon { width: 80px; height: 80px; border-radius: 20px; display: grid; place-items: center; margin: 0 auto 25px; font-size: 32px; color: #fff; }
    .s-card h3 { font-size: 22px; font-weight: 600; color: #1f2937; margin-bottom: 20px; font-style: italic; }
    .s-card p { font-size: 16px; color: #6b7280; margin-bottom: 30px; font-weight: 400; }
    .s-card .btn-full { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 15px 25px; border-radius: 12px; font-size: 16px; font-weight: 600; transition: .3s; color: #fff; }

    /* ===== Events ===== */
    .events { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #7c3aed 100%); padding: 100px 40px; color: #fff; text-align: center; }
    .events .title { font-size: 64px; font-weight: 700; margin-bottom: 30px; font-style: italic; line-height: 1.2; background: linear-gradient(135deg,#ffffff,#e5e7eb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .events .desc { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,.9); max-width: 700px; margin: 0 auto; font-weight: 400; }
    .e-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
    .e-card { background: rgba(255,255,255,.1); border-radius: 24px; padding: 40px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.2); transition: .3s; text-align: left; }
    .e-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.15); }
    .e-title { font-size: 28px; font-weight: 600; margin-bottom: 25px; font-style: italic; color: #fff; }
    .e-detail { display: flex; align-items: center; gap: 12px; font-size: 16px; color: rgba(255,255,255,.9); font-weight: 400; margin-bottom: 15px; }
    .e-text { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.8); margin: 15px 0 30px; font-weight: 400; }
    .e-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 16px 32px; border-radius: 16px; font-size: 16px; font-weight: 600; transition: .3s; border: none; cursor: pointer; }

    /* ===== Contact / Connect ===== */
    .connect { background: var(--grad-portal); padding: 100px 40px; text-align: center; }
    .connect .title { font-size: 64px; font-weight: 700; background: linear-gradient(135deg, #6b46c1, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 30px; font-style: italic; line-height: 1.2; }
    .connect .desc { font-size: 18px; line-height: 1.8; color: #6b7280; max-width: 700px; margin: 0 auto; font-weight: 400; }
    .contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
    .contact { padding: 50px 40px; border-radius: 24px; text-align: center; transition: .3s; border: 1px solid rgba(0,0,0,.05); overflow: hidden; }
    .contact:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
    .contact:nth-child(odd) { background: linear-gradient(135deg,#f3e8ff,#e9d5ff); }
    .contact:nth-child(2) { background: linear-gradient(135deg,#dbeafe,#bfdbfe); }
    .contact .icon { width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 30px; font-size: 32px; color: #fff; background: var(--grad-purple); }
    .contact:nth-child(2) .icon { background: var(--grad-blue); }
    .contact h3 { font-size: 24px; font-weight: 600; color: #1f2937; margin-bottom: 20px; font-style: italic; }
    .contact p { font-size: 16px; color: #6b7280; margin-bottom: 30px; font-weight: 400; }
    .contact .btn { width: 100%; padding: 16px 32px; border-radius: 16px; font-weight: 600; background: var(--grad-purple); color: #fff; border: none; }
    .contact:nth-child(2) .btn { background: var(--grad-blue); }

    /* ===== CTA / Footer ===== */
    .cta-final { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #6b21a8 100%); padding: 80px 40px; color: #fff; text-align: center; }
    .cta-final .title { font-size: 56px; font-weight: 700; margin-bottom: 30px; font-style: italic; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 8px; }
    .cta-final .desc { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,.9); max-width: 800px; margin: 0 auto 50px; font-weight: 400; }
    .cta-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
    .cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; border-radius: 16px; font-size: 18px; font-weight: 700; transition: .3s; }
    .cta-btn.primary { background: linear-gradient(135deg, #f59e0b, #d97706); color: #1e1b4b; box-shadow: 0 8px 25px rgba(245,158,11,.4); }
    .cta-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,158,11,.5); }
    .cta-btn.secondary { background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.3); }
    .cta-btn.secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); border-color: rgba(255,255,255,.5); }

    footer { background: linear-gradient(135deg, #3730a3 0%, #4338ca 50%, #5b21b6 100%); padding: 80px 40px 40px; color: #fff; }
    .f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 60px; }
    .f-brand h3 { font-size: 28px; font-weight: 700; margin-bottom: 25px; }
    .f-brand p, .f-contact p { font-size: 16px; color: rgba(255,255,255,.8); }
    .f-links h4, .f-contact h4 { font-size: 20px; font-weight: 600; margin-bottom: 25px; }
    .f-links ul { list-style: none; }
    .f-links a { color: rgba(255,255,255,.8); transition: .3s; }
    .f-links a:hover { color: #fff; }
    .f-bottom { border-top: 1px solid rgba(255,255,255,.2); padding-top: 30px; text-align: center; }
    .f-legal { display: flex; justify-content: center; gap: 30px; }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .grid-2, .timeline, .impact, .stats { grid-template-columns: 1fr; }
      .legacy .header h2, .services .title, .transform .title, .global .title { font-size: 42px; }
      .legacy-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
      .grid-3 { grid-template-columns: 1fr; }
      .e-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 30px; }
      .f-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    }
    @media (max-width: 768px) {
      nav { padding: 15px 20px; gap: 15px; flex-wrap: wrap; }
      .about, .services, .transform, .global, .portal, .events, .connect, .cta-final, footer { padding: 80px 20px; }
      .title { font-size: 36px !important; }
      .hero .title { font-size: 48px; }
      .hero .desc, .services .desc, .transform .desc, .global .desc { font-size: 16px; }
      .cta-row, .tbtn-row { flex-direction: column; align-items: center; }
      .cta-btn, .tbtn { width: 280px; justify-content: center; }
      .f-legal { flex-direction: column; gap: 15px; }
    }
    @media (max-width: 480px) {
      .portal .title, .events .title, .connect .title { font-size: 28px; }
      .s-card, .e-card, .contact { padding: 25px 20px; }
    }
