.header {
  background: linear-gradient(135deg, var(--primary-color), #1a73e8);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pattern.svg');
  opacity: 0.1;
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.header-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .header {
    padding: 60px 0;
  }
  
  .header h1 {
    font-size: 2.5rem;
  }
  
  .header p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 50px 0 40px;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .header p {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .header-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .header-buttons .btn {
    width: 100%;
  }
} 