@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  --steel-blue: #4682B4;
  --pure-white: #FFFFFF;
  --muted-bronze: #8C7853;
  --dark-graphite: #1C2526;
  --accent-light: #f5f5f5;
}

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

html, body {
  font-family: 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--pure-white);
  color: var(--dark-graphite);
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-weight: 900;
  color: var(--dark-graphite);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

a {
  color: var(--steel-blue);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--muted-bronze);
  transform: scale(1.08);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--dark-graphite);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--steel-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: var(--pure-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

header nav a:hover {
  color: var(--steel-blue);
  transform: scale(1);
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--muted-bronze);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

main {
  flex: 1;
}

.container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  header nav { gap: 1rem; }
  header nav a { font-size: 0.8rem; }
}

section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark-graphite);
  color: var(--pure-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--pure-white);
}

.section-dark a {
  color: var(--steel-blue);
}

.section-light {
  background-color: var(--pure-white);
  color: var(--dark-graphite);
}

.section-alt {
  background-color: var(--accent-light);
  color: var(--dark-graphite);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-graphite);
  color: var(--pure-white);
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: var(--pure-white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  color: var(--pure-white);
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  color: var(--muted-bronze);
  border: 2px solid var(--muted-bronze);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  background-color: var(--muted-bronze);
  color: var(--dark-graphite);
  transform: scale(1.08);
}

.btn-primary {
  background-color: var(--steel-blue);
  color: var(--pure-white);
  border-color: var(--steel-blue);
}

.btn-primary:hover {
  background-color: var(--muted-bronze);
  border-color: var(--muted-bronze);
  color: var(--dark-graphite);
}

.btn-white {
  background-color: var(--pure-white);
  color: var(--dark-graphite);
  border-color: var(--pure-white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-60-40 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.grid-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .grid-2, .grid-60-40, .grid-70-30 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--pure-white);
  border: 2px solid var(--dark-graphite);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-dark .card {
  background-color: rgba(255,255,255,0.05);
  border-color: var(--steel-blue);
  color: var(--pure-white);
}

.section-dark .card h3 {
  color: var(--steel-blue);
}

.card:hover {
  border-color: var(--muted-bronze);
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--steel-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted-bronze);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

footer {
  background-color: var(--dark-graphite);
  color: var(--pure-white);
  padding: 3rem 0 1rem 0;
  margin-top: auto;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  footer .container {
    grid-template-columns: 1fr;
  }
}

footer h4 {
  color: var(--steel-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer a {
  color: var(--pure-white);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--steel-blue);
  transform: scale(1);
}

footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 2px solid var(--steel-blue);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-light);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: var(--steel-blue);
}

.accordion {
  border: 2px solid var(--dark-graphite);
  border-radius: 4px;
  overflow: hidden;
}

.section-dark .accordion {
  border-color: var(--steel-blue);
}

.accordion-item {
  border-bottom: 2px solid var(--dark-graphite);
}

.section-dark .accordion-item {
  border-color: var(--steel-blue);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background-color: var(--accent-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-graphite);
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.section-dark .accordion-header {
  background-color: rgba(255,255,255,0.05);
  color: var(--pure-white);
}

.accordion-header:hover {
  background-color: var(--steel-blue);
  color: var(--pure-white);
}

.section-dark .accordion-header:hover {
  background-color: var(--steel-blue);
}

.accordion-header.active {
  background-color: var(--muted-bronze);
  color: var(--pure-white);
}

.accordion-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-toggle.active {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content.active {
  max-height: 500px;
  padding: 1.5rem;
}

.accordion-content p {
  font-size: 17px;
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-graphite);
  color: var(--pure-white);
  padding: 1.5rem;
  z-index: 999;
  border-top: 4px solid var(--steel-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cookie-banner.active {
  max-height: 200px;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-banner.active {
    max-height: 400px;
  }
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-message a {
  color: var(--steel-blue);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--steel-blue);
  color: var(--pure-white);
}

.cookie-btn-accept:hover {
  background-color: var(--muted-bronze);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--pure-white);
  border: 2px solid var(--steel-blue);
}

.cookie-btn-reject:hover {
  background-color: var(--steel-blue);
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--steel-blue);
  border: 2px solid var(--steel-blue);
}

.cookie-btn-policy:hover {
  background-color: var(--steel-blue);
  color: var(--pure-white);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--muted-bronze);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
}

.disclaimer-box {
  background-color: var(--accent-light);
  border-left: 4px solid var(--steel-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.section-dark .disclaimer-box {
  background-color: rgba(255,255,255,0.05);
  border-left-color: var(--muted-bronze);
}

.disclaimer-box h4 {
  color: var(--steel-blue);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.section-dark .disclaimer-box h4 {
  color: var(--muted-bronze);
}

.disclaimer-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.nav-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.nav-pill {
  background-color: var(--steel-blue);
  color: var(--pure-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.nav-pill:hover,
.nav-pill.active {
  background-color: var(--muted-bronze);
  color: var(--dark-graphite);
}

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

.text-muted {
  color: var(--muted-bronze);
  font-size: 0.95rem;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
