/* Hero Section Styles */
html {
  background-color: #f5f5f7 !important;
}

:root {
  --hero-background-dark: #f5f5f7;
  --hero-background-light: #f5f5f7;
  --hero-background-black: #000;
  --text-light: #fff;
  --text-dark: #1d1d1f;
  --button-primary: rgb(0, 113, 227);
  --button-primary-hover: rgb(0, 118, 223);
  --button-secondary-border: #424245;
  --button-secondary-border-light: #d2d2d7;
  --button-secondary-hover: rgba(0, 0, 0, 0.1);
  --button-secondary-hover-light: rgba(0, 119, 237, 0.1);
  --section-max-width: 980px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #f5f5f7 !important;
}

.main-content {
  background-color: #f5f5f7;
  min-height: 100vh;
  position: relative;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
  background-color: #f5f5f7;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.logo-container {
  margin-bottom: 40px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(37%) sepia(92%) saturate(1857%) hue-rotate(207deg) brightness(92%) contrast(101%);
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 21px;
  color: var(--text-dark);
  margin: 0 0 40px 0;
  line-height: 1.4;
  font-weight: 400;
  opacity: 0.8;
}

.hero-actions {
  margin-top: 40px;
}

.btn-primary {
  background-color: var(--button-primary);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  cursor: pointer;
  font-family: inherit;
  min-width: 120px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--button-primary-hover);
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background-color: #f5f5f7;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: start;
}

.feature-item {
  text-align: left;
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 475px;
  height: 460px;
  box-sizing: border-box;
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-img {
  width: 56px;
  height: 56px;
  display: block;
  filter: brightness(0) saturate(100%) invert(37%) sepia(92%) saturate(1857%) hue-rotate(207deg) brightness(92%) contrast(101%);
}

.feature-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.feature-description {
  font-size: 19px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-container {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
  
  .feature-item {
    text-align: center;
    width: 100%;
    max-width: 475px;
    height: auto;
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-description {
    font-size: 19px;
  }
  
  .features-section {
    padding: 60px 20px;
  }
  
  .feature-title {
    font-size: 28px;
  }
  
  .feature-description {
    font-size: 17px;
  }
  
  .feature-item {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 400px;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 17px;
  }
  
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .feature-title {
    font-size: 24px;
  }
  
  .feature-description {
    font-size: 16px;
  }
}
