* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.45;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo h1 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo a {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2937;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #E11D48;
}

.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #1f2937;
}

section {
  min-height: auto;
  padding: 70px 0 65px;
  scroll-margin-top: 70px;
}

.hero {
  background: linear-gradient(110deg, #fff5f7 0%, #ffffff 70%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1.2;
  min-width: 280px;
}

.hero-right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #111827, #E11D48);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  background: #fecdd3;
  padding: 4px 12px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #BE123C;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: #111827;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 52px;
  height: 3px;
  background: #E11D48;
  border-radius: 4px;
}

.layout-img-left,
.layout-img-right {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.img-col,
.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image {
  flex: 1;
}

.img-col img,
.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.text-col {
  flex: 1;
  min-width: 280px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.text-col p,
.about-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #374151;
}

.layout-card-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.layout-card-feature .main-text {
  flex: 1;
  min-width: 260px;
}

.feature-card-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  min-width: 260px;
}

.feature-card-item {
  background: #f8fafc;
  border-radius: 1.2rem;
  padding: 1.3rem;
  transition: all 0.2s;
}

.feature-card-item i {
  font-size: 1.6rem;
  color: #E11D48;
  margin-bottom: 0.6rem;
}

.feature-card-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.feature-card-item p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}

.layout-stats-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.stats-panel {
  flex: 1;
  background: #fef2f4;
  border-radius: 1.5rem;
  padding: 1.8rem;
  min-width: 240px;
}

.stat-block {
  margin-bottom: 1.2rem;
}

.stat-block:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #E11D48;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.feature-list {
  list-style: none;
  margin-top: 0.8rem;
}

.feature-list li {
  margin-bottom: 0.7rem;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.feature-list i {
  color: #E11D48;
  font-size: 1rem;
  width: 20px;
}

.contact-wrapper {
  background: #111827;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  color: white;
  width: 100%;
  text-align: center;
}

.contact-wrapper .section-title {
  color: white;
}

.contact-wrapper .section-title:after {
  left: 50%;
  transform: translateX(-50%);
  background: #E11D48;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  padding: 1.2rem 1.5rem;
  border-radius: 1.2rem;
  min-width: 210px;
  text-align: center;
}

.contact-card i {
  font-size: 1.6rem;
  color: #E11D48;
  margin-bottom: 0.5rem;
}

.contact-card h4 {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.contact-card p,
.contact-card a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
}

.contact-card a:hover {
  color: #E11D48;
}

footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: #E11D48;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: -100%;
    flex-direction: column;
    background: white;
    width: 75%;
    height: calc(100vh - 64px);
    gap: 1.4rem;
    padding: 1.8rem;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    align-items: flex-start;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .section-title {
    text-align: center;
    display: block;
    font-size: 1.7rem;
  }

  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .layout-img-left,
  .layout-img-right,
  .layout-card-feature,
  .layout-stats-panel,
  .about-layout {
    flex-direction: column;
    text-align: center;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    justify-content: center;
  }

  .stats-panel {
    text-align: left;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 260px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  section {
    padding: 55px 0 50px;
  }

  .about-image,
  .img-col {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }

  .feature-card-item {
    padding: 1rem;
  }
}