* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f172a;
  --secondary: #b45309;
  --accent: #f59e0b;
  --light: #fffaf3;
  --text: #334155;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 16px 35px rgba(15, 23, 42, 0.14);
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #fcfcfc;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.light-bg {
  background-color: var(--light);
}

.site-header {
  background-color: var(--primary);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: var(--secondary);
}

.hero {
  position: relative;
  min-height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 720px;
  color: var(--white);
}

.tagline {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.18);
  color: #fde68a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  color: #e2e8f0;
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #fbbf24;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2,
.page-banner-text h1,
h2,
h3 {
  color: var(--primary);
}

.grid-2 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.grid-2 > * {
  flex: 1 1 320px;
}

.align-center {
  align-items: center;
}

.section-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--secondary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent);
}

.card-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 300px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.highlight-card,
.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.highlight-card ul li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.highlight-card ul li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: 0;
}

.page-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.page-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.page-banner-text h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.page-banner-text p {
  font-size: 1.05rem;
  color: #f1f5f9;
}

.cta-section {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.cta-box {
  text-align: center;
  background-color: var(--white);
  padding: 45px 25px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 20px;
}

.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 35px 0;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-content h3,
.footer-content h4 {
  margin-bottom: 10px;
}

.footer-content p {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu li,
  .nav-menu a {
    width: 100%;
  }

  .nav-menu a {
    display: block;
  }

  .hero {
    min-height: 75vh;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .page-banner {
    height: 240px;
  }

  .page-banner-text h1 {
    font-size: 2rem;
  }

  .section {
    padding: 55px 0;
  }

  .section-image {
    height: 260px;
  }
}