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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 37, 37, 0.82);
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image {
  position: absolute;
  top: -156px;
  left: 0;
  width: 100%;
  height: calc(100% + 156px);
  background-image: url('../img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 49.5%;
  height: 100%;
  width: 951px;
  height: 969px;
  background: rgba(37,37,37,0.82) #8C8C8C;
  z-index: 2;
}

.blur-circle {
  position: absolute;
  top: 362px;
  left: -725px;
  width: 1450px;
  height: 1450px;
  background: rgba(0, 52, 208, 0.4);
  border-radius: 50%;
  filter: blur(725px);
  z-index: 3;
}

.content {
  position: relative;
  z-index: 4;
  width: 49.5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 100px;
  gap: 120px;
  background: linear-gradient(
          180deg,
          rgba(2, 10, 28, 0.9) 0%,
          rgba(2, 10, 28, 0.7) 50%,
          rgba(2, 10, 28, 0.5) 100%
      );
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.title-section {
  display: flex;
  flex-direction: column;
}

.company-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin-bottom: 0;
}

.company-subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin-top: 0;
}

.company-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 701px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #006AFF;
  border-radius: 36px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
  width: fit-content;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: #0056CC;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 106, 255, 0.3);
}

@media (max-width: 1200px) {
  .content {
      width: 60%;
      padding: 0 40px 0 60px;
  }
  
  .gradient-overlay {
      width: 60%;
  }
  
  .company-title {
      font-size: 40px;
  }
  
  .company-subtitle {
      font-size: 20px;
  }
  
  .company-description {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  .content {
      width: 100%;
      padding: 40px 20px;
      gap: 60px;
  }
  
  .gradient-overlay {
      width: 100%;
      background: rgba(37,37,37,0.82) #8C8C8C;
  }
  
  .company-title {
      font-size: 32px;
  }
  
  .company-subtitle {
      font-size: 18px;
  }
  
  .company-description {
      font-size: 16px;
  }
  
  .contact-button {
      font-size: 18px;
      padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .company-title {
      font-size: 28px;
  }
  
  .company-subtitle {
      font-size: 16px;
  }
  
  .company-description {
      font-size: 14px;
  }
  
  .contact-button {
      font-size: 16px;
      padding: 12px 24px;
  }
}
