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

:root {
  --color-white: #FDFDFD;
  --color-orange: #FF6F00;
  --color-green: #A3CB38;
  --color-blue: #00B4D8;
  --color-dark: #1a1a1a;
  --color-light-gray: #f5f5f5;
  --color-medium-gray: #999999;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.82;
  font-size: 1rem;
}

body {
  padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  color: var(--color-dark);
}

h2 {
  font-size: 2.5rem;
  color: var(--color-dark);
}

h3 {
  font-size: 1.8rem;
  color: var(--color-dark);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.82;
  font-size: 1rem;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-blue);
}

header {
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--color-orange);
}

.navbar {
  max-width: 1540px;
  margin: 0 auto;
  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-brand a {
  color: var(--color-orange);
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--color-orange);
}

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 6%;
}

.content-zone {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 6%;
}

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.section {
  margin: 6rem 0;
  padding: 2rem 0;
}

.section h2 {
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.15);
  border-color: var(--color-orange);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--color-light-gray);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  color: var(--color-dark);
}

.card-text {
  color: var(--color-medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--color-blue);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: var(--color-green);
}

.btn-secondary:hover {
  background-color: var(--color-orange);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-white);
}

.table th {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-weight: 900;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.table tr:hover {
  background-color: var(--color-light-gray);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  margin-top: 6rem;
  padding: 3rem 0;
  border-top: 3px solid var(--color-orange);
}

.footer-content {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 6%;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-white);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-medium-gray);
}

.footer-disclaimer {
  background-color: rgba(255, 111, 0, 0.1);
  border-left: 4px solid var(--color-orange);
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.9rem;
}

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

.disclaimer-box h3 {
  color: var(--color-orange);
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.fade-in {
  animation: fadeIn 0.32s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-features {
  list-style: none;
  margin: 2rem 0;
}

.list-features li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.list-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 1.5rem;
}

.highlight {
  background-color: rgba(255, 111, 0, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  color: var(--color-orange);
  font-weight: 700;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-orange);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .two-column.reverse > * {
    direction: ltr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-sections {
    grid-template-columns: 1fr;
  }

  .container,
  .content-zone,
  .footer-content {
    padding: 0 4%;
  }
}
