html, body {
  width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* ================= ROOT & RESET ================= */
* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-blue: #52C0F7;
  --primary-green: #8FF89F;
  --primary-yellow: #FDC43D;
  --primary-pink: #FD98C1;
  --primary-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--primary-dark);
  line-height: 1.6;
  background: var(--white);
  padding-top: 120px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

nav {
  max-width: 1400px;
  margin: auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 100px;           /* Adjust if needed */
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  opacity: 0.95;
}

.navbar {
  max-width: 100%;
  margin: auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: left;
}

/* Center menu */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 3rem;
  margin-left: 3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 700;
  transition: var(--transition);
  font-size: 20px;
}

.nav-link:hover {
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 10px 20px;
}

.btn-contact {
  text-decoration: none;
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  transition: var(--transition);
  font-size: 20px;
  border-radius: 10px;
}

.btn-contact:hover {
  color: #3b82f6;
  padding: 10px 20px;
}

.mobile-contact-btn {
  display: none;
}

/* HAMBURGER DEFAULT (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: .3s;
}

/*Mobile Responsive */

@media (max-width: 768px) {

.navbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem;
}

.logo img {
  height: 58px;
}

  /* SHOW HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  justify-self: end;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: .3s;
}  

/* HIDE MENU INITIALLY */
.nav-menu {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #e5e7eb;
  z-index: 999;
  margin-left: 0;
}

/* WHEN OPEN */
.nav-menu.active {
  display: flex;
}

.nav-link {
  font-size: 17px;
  padding: 6px 10px;
}

.btn-contact {
  display: none;  /* keep header clean on mobile */
}

.mobile-contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.mobile-contact-btn:hover {
  opacity: .9;
}

}

  /* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ================= BANNER ================== */
/* ================= TEXT BANNER (FOR SCHOOL) ================= */

.banner {
    position: relative;
    width: 100%;
    height: 80vh;   /* ⬅️ reduce from 75vh to 55vh */
    overflow: hidden;
  }
  
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/* OVERLAY */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.25),
      rgba(255,255,255,0.25)
  );
  z-index: 1;
}
  
  /* CENTERED TEXT */
.banner-content{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 4rem 2rem 0;
    color: #000;
}
 
.banner-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;      /* centers the button under the text */
  text-align: left;         /* text remains left aligned */
  gap: 18px;
}

.banner-content h2 {
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1rem;
    max-width: 100%;
    margin-left: 10rem;
}
  
.banner-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 850px;
    margin-bottom: 2.5rem;
    font-weight: 800;
}
  
  /* KEEP BUTTON SAME BUT ABOVE TEXT */
  .banner .btn-primary {
    position: relative;
    bottom: auto;            /* Move button up/down */
    left: auto;
    transform: none;
    padding: 8px 30px;
    font-size: 20px;
    background-color: #FDC43D;
    color: #000000;
    border-radius: 8px;
    text-decoration: none;
    z-index: 3;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    margin-top: 4rem;
    margin-left: 10rem;
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 24px rgba(0,0,0,0.15);
    cursor: pointer;
  }
    
/* Mobile Responsive */
@media (max-width: 768px) {

  .banner {
    height: auto;
    min-height: 50vh;
  }

  .banner img {
    height: 100%;
    object-fit: cover;
  }

  .banner-content {
    padding: 0 1rem;
  }

  .banner-content h2 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .banner-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .banner .btn-primary {
    width: 100%;
    max-width: 200px;
    padding: 10px 16px;
    font-size: 1rem;
    margin-top: 1rem;
  }
} 


/* ================= Current struggle ============= */
.struggle-new {
  padding: 4rem 2rem;
  background: #eef3f8;
}

.struggle-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.struggle-new h2 {
  font-size: 2.4rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.struggle-intro {
  color: #475569;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.struggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.struggle-card {
  background: #ffffff;
  padding: 1.5rem 1.3rem;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.struggle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

.s-icon {
  background: #e7f6ff;
  color: #0ea5e9;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.s-icon i {
  font-size: 18px;
  line-height: 1;
}

.struggle-card p {
  color: #0f172a;
  text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .struggle-new {
    padding: 2.2rem 1rem;
  }

  .struggle-new h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .struggle-intro {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 .5rem;
  }

  .struggle-grid {
    gap: 1rem;
  }

  .struggle-card {
    padding: 1rem;
    gap: .8rem;
    border-radius: 12px;
  }

  .s-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .struggle-card p {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}


/* ================= HOW SKOOZY SOLVES IT ================= */

.how-skoozy-works {
    width: 100%;
    padding: 4rem 2rem;
    /* BACKGROUND IMAGE 
    background-image: url("../images/how-skoozy-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
    background-color: #fcedfd; /* fallback */
    position: relative;
    display: flex;
    align-items: center;
  }

  .how-skoozy-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
  }
  
  .how-container {
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .how-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
  }
  
  .how-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
  }
  
/* STEPS WRAPPER */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }
  
  /* STEP */
  .step {
    max-width: 220px;
    text-align: center;
    flex: 1;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    background: #FD98C1;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.0rem;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }

  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .step p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
/* Mobile Responsive */
@media (max-width: 768px) {

  .how-skoozy-works {
    padding: 2.5rem 1rem;
  }

  .how-container {
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .how-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .how-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .steps {
    flex-wrap: wrap;          /* allow wrapping */
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .step {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .step-circle {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .step h3 {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .step p {
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin: 0 auto;
    max-width: 95%;
  }
}

 
  
/* ================= CATEGORIES TO EXPLORE ================= */

.categories-section {
    width: 100%;
    background: #fdfbf0;
    padding: 4rem 2rem;
  }
  
  .categories-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .categories-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.2rem;
  }
  
  .categories-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
  }
  
  /* GRID */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  /* CARD */
  .category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
  }
  
  /* ICON */
  .category-icon {
    width: 64px;
    height: 64px;
    background: #FDC43D;

    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
  }
  
  /* TEXT */
  .category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
  }
  
/* Mobile Responsive */
@media (max-width: 768px) {

  .categories-section {
    width: 100%;
    max-width: 100%;
    padding: 2rem 0.8rem;
  }

  .categories-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .categories-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    line-height: 1.45;
  }

  .categories-grid {
    grid-template-columns: 1fr;   /* stack vertically */
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .category-card {
    padding: 1rem;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .category-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .category-card h3 {
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .categories-container{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

}


/* ================= WHO IS SKOOZY FOR ================= */

.who-skoozy-for {
    width: 100%;
    padding: 4rem 2rem;
    background: #f3faf0;
  }
  
  .who-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  /* Heading */
  .who-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.6rem;
  }
  
  .who-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
  }
  
  /* Grid */
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  /* Card */
  .who-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
  }
  
  /* Icon */
  .who-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: #8FF89F;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Text */
  .who-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.6rem;
  }
  
  .who-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
  }
  
/* Mobile Responsive */
@media (max-width: 768px) {

  .who-skoozy-for {
    padding: 2.5rem 1rem;
  }

  .who-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .who-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.45;
  }

  .who-grid {
    grid-template-columns: 1fr;     /* stack vertically */
    gap: 1.2rem;
  }

  .who-card {
    padding: 1.4rem;
    border-radius: 16px;
  }

  .who-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0.9rem;
  }

  .who-card h3 {
    font-size: 1rem;
  }

  .who-card p {
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

 
/* ================= WHY PARTNER ================= */

.why-partner {
  width: 100%;
  padding: 4rem 2rem;
  background: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.why-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */
.why-card img {
  width: 90px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* TEXT */
.why-card p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.6;
}

/* Mobile RESPONSIVE */
@media (max-width: 768px) {

  .why-partner {
    padding: 2.5rem 1rem;
  }

  .why-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .why-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.45;
  }

  .why-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 1.2rem;
  }

  .why-card {
    padding: 1.4rem;
    border-radius: 16px;
  }

  .why-card img {
    width: 64px;
    margin-bottom: 1rem;
  }

  .why-card p {
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


/* ==== Ready to grow Business ==== */  
.cta-section{
  text-align:center;
  padding:80px 20px;
  color:#ffffff;

  /* gradient background */
  background: linear-gradient(145deg, #52C0F7, #52C0F7);
  margin:80px auto;
}

.cta-eyebrow{
  font-size:16px;
  opacity:0.9;
  margin-bottom:30px;
}

.cta-title{
  font-size: 2.5rem;
  font-weight: 600;
  max-width:780px;
  margin:0 auto 28px;
  margin-bottom: 0.6rem;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* main button */
.btn-primary-cta{
  padding:12px 26px;
  background:#ffffff;
  color:#52C0F7;
  border-radius:10px;
  text-decoration:none;
  font-weight:500;
}

/* outline button */
.btn-outline-cta{
  padding:12px 26px;
  border:1.5px solid #ffffff;
  border-radius:10px;
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}  

/* Mobile Responsive */
@media (max-width: 768px) {

  .cta-section {
    padding: 48px 14px;
    margin: 40px auto;
  }

  .cta-eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .cta-title {
    font-size: 1.6rem;
    line-height: 1.3;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .cta-buttons {
    gap: 10px;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
}



/* ================= FOOTER ================= */

.site-footer {
  background: #ffffff;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* BRAND */
.footer-brand img {
  width: 36px;
  height: auto;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.tagline {
  display: inline-block;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  color: #3b82f6;
  font-weight: 500;
}

.brand-desc {
  font-size: 1rem;
  color: #64748b;
  max-width: 360px;
  line-height: 1.6;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 1rem;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #3b82f6;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #52C0F7;
  color: #ffffff;
}

/* Legal Link */
.footer-legal {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  margin: 0 5px;
  transition: color .3s ease;
}

.footer-legal a:hover {
  color: #3b82f6;
}

.footer-legal span {
  color: #cbd5e1;
}
 
/*Mobile Responsive*/
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  } 

  .site-footer {
    padding: 2.2rem 1rem 1.5rem;
  }

  .footer-container {
    max-width: 100%;
    gap: 1.2rem;          /* tighter spacing */
  }

  .footer-brand img {
    width: 28px;
  }

  .footer-brand h3 {
    font-size: 1.05rem;
  }

  .tagline {
    font-size: 0.85rem;
    margin: 0.3rem 0 0.6rem;
  }

  .brand-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
  }

  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .footer-legal {
    font-size: 0.8rem;
    margin-top: 1.2rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}




* {
  box-sizing: border-box;
}