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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f2f2f2;
  color: #222;
  line-height: 1.6;
}

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

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

/* =========================
   VARIABLES
========================= */
:root {
  --bg-dark: #0f0f11;
  --bg-card: #1a1a1d;
  --text-light: #ffffff;
  --text-muted: #d0d0d0;
  --primary: #d82323;
  --primary-dark: #a81414;
  --soft-gray: #e8e8e8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

/* =========================
   UTILITIES
========================= */
.start {
  display: flex;
  justify-content: flex-start;
}

.end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.col {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.bold {
  font-weight: bold;
}

.semibold {
  font-weight: 600;
}

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

.section {
  padding: 90px 0;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 14px;
  color: #3b312f;
}

.section-heading h2 span {
  color: var(--primary);
}

.section-heading p {
  color: #6d6d6d;
  font-size: 0.98rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.82rem;
}

/* =========================
   HEADER
========================= */

.header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 33px 20px;
}

.logo img {
  padding-left: 3rem;
  height: 78px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 3rem;
}

.menu a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.menu a:hover {
  color: #ffb2b2;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0f0f11;
  color: #fff;
  padding: 22px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #d8d8d8;
}
.footer-content img {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  margin-right: 10px;
}
