* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  background-color: #000000;
  overflow: hidden;
  position: relative;
}

.header {
  position: relative;
  width: 100%;
  height: 128px;
  background-color: #f3f3f3;
  border: 3px solid #ff0000;
  display: flex;
  align-items: center;
  padding: 0 120px;
}

.logo {
  width: 112px;
  height: 79px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  color: #ff0000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-item.active {
  font-weight: 700;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.5s;
}

.nav-item:hover::before {
  left: 100%;
}

.nav-item:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.main-section {
  position: relative;
  width: 100%;
  height: 757px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-title {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 700;
  color: #ff0101;
  line-height: 37px;
  z-index: 3;
  white-space: nowrap;
}

.gradient-overlay-1 {
  position: absolute;
  width: 100%;
  height: 757px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(255, 0, 0, 0.46) 0%,
      rgba(255, 255, 255, 0) 30%);
  z-index: 4;
}

.content-section {
  position: relative;
  background-color: #000000;
  padding: 0;
  display: block;
  min-height: 883px;
  height: 883px;
}

.question-text {
  position: absolute;
  top: 20px;
  right: 120px;
  font-size: 36px;
  font-weight: 700;
  text-align: right;
  z-index: 4;
  line-height: 40px;
  white-space: nowrap;
}

.question-text .white {
  color: #ffffff;
}

.question-text .red {
  color: #ff0000;
}

.content-image {
  position: absolute;
  width: 100%;
  height: 883px;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.content-text {
  position: absolute;
  right: 0;
  top: 80px;
  width: 56%;
  padding: 0 120px 0 60px;
  z-index: 4;
}

.content-description {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

.content-gradient-overlay {
  position: absolute;
  width: 338px;
  height: 883px;
  top: 0;
  left: 0;
  background: linear-gradient(270deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 0, 0, 0.46) 100%);
  z-index: 2;
}

.separator {
  width: 100%;
  height: 5px;
  background: #ff0000;
  margin: 0;
}

.footer {
  background-color: #000000;
  padding: 60px 20px;
  color: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  width: 193px;
  height: 62px;
  object-fit: cover;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 600;
  flex-direction: row-reverse;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.copyright {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1200px) {
  .header {
    padding: 0 60px;
  }
  
  .content-text {
    width: 60%;
    padding: 0 80px 0 40px;
  }
  
  .question-text {
    right: 80px;
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0 40px;
  }
  
  .nav-menu {
    gap: 30px;
  }
  
  .nav-item {
    font-size: 18px;
  }
  
  .main-section {
    height: 600px;
  }
  
  .hero-image {
    height: 600px;
  }
  
  .gradient-overlay-1 {
    height: 600px;
  }
  
  .hero-title {
    font-size: 80px;
    bottom: 80px;
  }
  
  .content-section {
    height: auto;
    min-height: 600px;
  }
  
  .content-image {
    height: 600px;
  }
  
  .content-gradient-overlay {
    height: 600px;
    width: 280px;
  }
  
  .content-text {
    width: 65%;
    padding: 0 60px 0 30px;
  }
  
  .question-text {
    right: 60px;
    font-size: 28px;
  }
  
  .content-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px;
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .nav-menu {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-item {
    font-size: 16px;
  }
  
  .main-section {
    height: 500px;
  }
  
  .hero-image {
    height: 500px;
  }
  
  .gradient-overlay-1 {
    height: 500px;
  }

  .hero-title {
    font-size: 60px;
    bottom: 50px;
  }

  .content-section {
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  
  .content-image {
    position: relative;
    width: 100%;
    height: 300px;
    order: 1;
  }
  
  .content-gradient-overlay {
    display: none;
  }
  
  .question-text {
    position: relative;
    top: 0;
    right: 0;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    white-space: normal;
    order: 2;
  }
  
  .content-text {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    order: 3;
  }
  
  .content-description {
    font-size: 16px;
    text-align: left;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .footer-contact {
    align-items: flex-start;
  }
  
  .contact-item {
    flex-direction: row;
  }
  
  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px;
  }
  
  .logo {
    width: 80px;
    height: 56px;
  }
  
  .nav-item {
    font-size: 14px;
  }
  
  .main-section {
    height: 400px;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .gradient-overlay-1 {
    height: 400px;
  }

  .hero-title {
    font-size: 48px;
    bottom: 40px;
  }

  .content-section {
    min-height: 400px;
  }
  
  .content-image {
    height: 250px;
  }
  
  .question-text {
    font-size: 20px;
    padding: 15px;
  }
  
  .content-text {
    padding: 15px;
  }
  
  .content-description {
    font-size: 14px;
  }
  
  .footer {
    padding: 40px 15px;
  }
  
  .footer-logo {
    width: 150px;
    height: 48px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .contact-item {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .nav-item {
    font-size: 12px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .content-image {
    height: 200px;
  }
  
  .question-text {
    font-size: 18px;
  }
  
  .content-description {
    font-size: 13px;
  }
  
  .footer-logo {
    width: 120px;
    height: 38px;
  }
}