:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ffa05d;
  --dark-bg: #1a1a1a;
  --darker-bg: #121212;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa05d 100%);
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--darker-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger menu animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Page Content Styles */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
  padding-bottom: 50px;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: var(--gradient-orange);
  border-radius: 20px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--darker-bg);
  border-radius: 15px;
  border-left: 4px solid var(--primary-orange);
}

.content-section h2 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  color: var(--secondary-orange);
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.content-section p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section ul {
  color: var(--text-gray);
  padding-left: 2rem;
  line-height: 1.8;
}

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

.contact-info {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--primary-orange);
}

.footer {
  background: #000;
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--primary-orange);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-label {
  font-weight: 500;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 30px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .content-section {
    padding: 1.25rem;
  }
}
