
/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2B2F33;
  background-color: #F5F6F8;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER / NAV
========================= */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #2B2F33;
}

.logo span {
  color: #F76596;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: #2B2F33;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F76596;
}

/* CTA Button */
.btn-primary {
  background: #F76596;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #E05583;
}

.btn-outline {
  border: 1px solid #F76596;
  color: #F76596;
  padding: 10px 18px;
  border-radius: 6px;
}

.btn-outline:hover {
  background: #F76596;
  color: #fff;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  background: #fff;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text span {
  color: #F76596;
}

.hero-text p {
  margin-bottom: 20px;
}

.hero-img {
  flex: 1;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
}

.section-title span {
  color: #F76596;
}

/* =========================
   CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: #F76596;
}

.card h3 {
  margin: 10px 0;
}

/* =========================
   LIST
========================= */
.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   FORM
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #2B2F33;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer a:hover {
  color: #F76596;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* =========================
   TABLE
========================= */
table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    flex-direction: column;
  }
}

@media(max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.hero-img img {
  width: 100%;
  height: auto;

  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to left,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0) 100%
  );
}