
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #06120d;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, 1180px);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(4, 18, 12, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo img {
  width: 135px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.menu a {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 11px;
  border-radius: 999px;
}

.menu a:hover,
.menu a.active {
  background: #facc15;
  color: #062010;
}

.hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.35)),
    url("https://web.archive.org/web/20240829123327im_/https://continentalsfc.com/wp-content/uploads/2023/09/slider1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  padding: 75px 0;
}

.hero-logo {
  width: 210px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background: #facc15;
  color: #082018;
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero p {
  color: #e5e7eb;
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #facc15;
  color: #092016;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 13px 22px;
  border: 0;
  cursor: pointer;
}

.btn.dark {
  background: #132a1d;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}

.section {
  padding: 70px 0;
}

.section.green {
  background: #092016;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title span {
  color: #facc15;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
}

.about-box {
  text-align: center;
  max-width: 920px;
  margin: auto;
}

.about-logo {
  width: 160px;
  margin: 0 auto 20px;
}

.about-box h1 {
  font-size: clamp(32px, 6vw, 58px);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-box p {
  color: #d1d5db;
  font-size: 17px;
  margin-bottom: 22px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.article-card {
  background: #10251a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.card-img {
  height: 280px;
  background: #07130c;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.card-body,
.article-card {
  padding: 20px;
}

.number {
  display: inline-block;
  background: #facc15;
  color: #07170f;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 10px;
}

.card h3,
.article-card h3 {
  font-size: 22px;
  margin-bottom: 7px;
}

.card p,
.article-card p {
  color: #cbd5e1;
  margin-bottom: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: #10251a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.stat strong {
  font-size: 38px;
  color: #facc15;
  display: block;
  line-height: 1;
}

.page-hero {
  padding: 70px 0 35px;
  background: #092016;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  text-transform: uppercase;
}

.page-hero p {
  color: #cbd5e1;
}

.content {
  background: #07170f;
  padding: 60px 0;
}

.content-box {
  background: #10251a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 34px;
  max-width: 980px;
  margin: auto;
}

.content-box h2 {
  color: #facc15;
  font-size: 28px;
  margin: 28px 0 10px;
}

.content-box p,
.content-box li {
  color: #d1d5db;
  margin-bottom: 14px;
}

.content-box ul {
  margin-left: 22px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 20px;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 14px;
  text-align: left;
  color: #d1d5db;
}

.table th {
  color: #facc15;
  background: #07170f;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: #07170f;
  color: #fff;
}

.footer {
  background: #020b06;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 28px 0;
  text-align: center;
  color: #9ca3af;
}

@media(max-width: 900px) {
  .navbar {
    flex-direction: column;
  }

  .menu {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 55px 0;
  }

  .grid,
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .container {
    width: 94%;
  }

  .logo img {
    width: 115px;
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .menu a {
    text-align: center;
    font-size: 12px;
    background: rgba(255,255,255,.06);
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
    width: 150px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid,
  .article-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 310px;
  }

  .content-box {
    padding: 22px 16px;
  }

  .section {
    padding: 48px 0;
  }
}
