* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  background-color: #ffffff;
  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);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 917px;
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 338px;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 0, 0, 0.46) 0%, rgba(255, 0, 0, 0.2) 50%, rgba(255, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 207px;
  max-width: 60%;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 37px;
  margin-bottom: 60px;
}

.hero-image {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  width: 961px;
  height: 407px;
  object-fit: cover;
}

.story-section {
  position: relative;
  width: 100%;
  min-height: 759px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}

.story-image {
  width: 404px;
  height: 757px;
  object-fit: cover;
  margin-left: 92px;
}

.story-content {
  flex: 1;
  padding: 80px 100px 80px 60px;
}

.story-title {
  font-size: 40px;
  font-weight: 700;
  color: #ff0000;
  line-height: 37px;
  margin-bottom: 60px;
}

.story-text {
  font-size: 20px;
  font-weight: 400;
  color: #ff0000;
  line-height: 1.6;
  margin-bottom: 40px;
}

.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;
  }
  
  .hero-content {
    margin-left: 120px;
    max-width: 65%;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-image {
    width: 700px;
    height: 300px;
    right: 50px;
  }
  
  .story-image {
    width: 350px;
    height: 650px;
    margin-left: 60px;
  }
  
  .story-content {
    padding: 60px 80px 60px 50px;
  }
  
  .story-title {
    font-size: 36px;
  }
  
  .story-text {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0 40px;
  }
  
  .nav-menu {
    gap: 30px;
  }
  
  .nav-item {
    font-size: 18px;
  }
  
  .hero-section {
    height: 700px;
    padding-top: 80px;
  }
  
  .hero-content {
    margin-left: 80px;
    max-width: 70%;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .hero-image {
    width: 550px;
    height: 240px;
    right: 30px;
  }
  
  .story-section {
    min-height: 600px;
  }
  
  .story-image {
    width: 300px;
    height: 500px;
    margin-left: 40px;
  }
  
  .story-content {
    padding: 50px 60px 50px 40px;
  }
  
  .story-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .story-text {
    font-size: 16px;
  }
}

@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;
  }

  .hero-section {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .hero-image {
    position: static;
    transform: none;
    width: 100%;
    height: 250px;
    margin-top: 30px;
  }

  .hero-overlay {
    display: none;
  }

  .story-section {
    flex-direction: column;
    min-height: auto;
  }

  .story-image {
    width: 100%;
    height: 300px;
    margin-left: 0;
  }

  .story-content {
    padding: 40px 20px;
  }

  .story-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 30px;
  }

  .story-text {
    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;
  }
  
  .hero-section {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  
  .hero-image {
    height: 200px;
    margin-top: 25px;
  }
  
  .story-image {
    height: 250px;
  }
  
  .story-content {
    padding: 30px 15px;
  }

  .story-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 25px;
  }

  .story-text {
    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: 20px;
    line-height: 24px;
  }
  
  .hero-image {
    height: 180px;
  }
  
  .story-image {
    height: 200px;
  }
  
  .story-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .story-text {
    font-size: 12px;
  }
  
  .footer-logo {
    width: 120px;
    height: 38px;
  }
}