* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: #f4f2ee;
  color: #111;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: #ffffff;
  border-bottom: 3px solid #000000;
  z-index: 1000;
  box-shadow: 0 6px 0 rgba(0,0,0,0.05);
}

.logo {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  cursor: pointer;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #ff5e5e;
  transition: 0.15s linear;
}

.logo:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 #ff5e5e;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  letter-spacing: -0.2px;
}

.nav-links a:hover {
  color: #e02b2b;
  border-bottom-color: #e02b2b;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: white;
  padding: 6px 8px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #000;
  transition: 0.2s;
}

.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 24px 60px 24px;
  background: #f4f2ee;
  border-bottom: 2px dashed #111;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  max-width: 780px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #000;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: none;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2d2d2d;
  max-width: 520px;
  background: #fff;
  padding: 8px 20px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #ff5e5e;
  display: inline-block;
}

.btn {
  margin-top: 32px;
  padding: 14px 34px;
  background: #ff2b2b;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.3px;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 #000;
  transition: 0.12s linear;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
  background: #e01e1e;
}

section {
  padding: 70px 60px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 54px;
  position: relative;
  display: inline-block;
  width: 100%;
  color: #000;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: #ff2b2b;
  margin: 12px auto 0;
  border: 1px solid #000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}

.card {
  background: #ffffff;
  padding: 34px 26px;
  border: 2.5px solid #000000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.12);
  transition: 0.18s linear;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 12px 0 rgba(0,0,0,0.2);
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  border-left: 5px solid #ff2b2b;
  padding-left: 14px;
}

.card p {
  font-size: 0.95rem;
  color: #2c2c2c;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.card a {
  font-weight: 800;
  color: #000;
  background: #fff2b5;
  padding: 6px 14px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  font-size: 0.85rem;
  transition: 0.1s;
  display: inline-block;
  text-decoration: none;
}

.card a:hover {
  background: #ff2b2b;
  color: white;
  box-shadow: 3px 3px 0 #000;
  transform: translate(-1px, -1px);
}

.footer {
  background: #114cb9;
  color: #f5e9e9;
  text-align: center;
  padding: 70px 24px 50px;
  border-top: 6px solid #ff2b2b;
}

.footer p {
  color: #ccc;
  font-weight: 500;
  margin-bottom: 28px;
  font-size: 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #ffffff;
  color: #000;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #ff2b2b;
  transition: 0.1s linear;
  font-size: 1.4rem;
}

.socials a:hover {
  transform: translate(-2px, -2px);
  background: #ff2b2b;
  color: #fff;
  box-shadow: 5px 5px 0 white;
  border-color: #fff;
}

.copyright {
  margin-top: 38px;
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: -280px;
    flex-direction: column;
    background: #ffffff;
    width: 220px;
    padding: 28px 24px;
    gap: 24px;
    border: 3px solid #000;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.15);
    transition: 0.25s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }
}