/* Stay Updated Section */
.stay-updated-section {
  margin: 3rem auto;
  padding: 0 1.25rem;
}

.stay-updated-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  color: white;
}

.stay-updated-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stay-updated-header h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stay-updated-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.stay-updated-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.update-option {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.update-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.update-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.update-option:hover .update-icon {
  transform: scale(1.1);
}

.update-option--newsletter .update-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.update-option--linkedin .update-icon {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
  color: white;
}

.update-option h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.update-option p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.update-option .btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
  border: none;
  cursor: pointer;
}

.update-option .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
  text-decoration: none;
}

.update-option--linkedin .btn {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
  box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

.update-option--linkedin .btn:hover {
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stay-updated-box {
    padding: 2rem 1.5rem;
  }

  .stay-updated-header h2 {
    font-size: 1.6rem;
  }

  .stay-updated-header p {
    font-size: 1rem;
  }

  .stay-updated-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .update-option {
    padding: 1.5rem;
  }

  .update-icon {
    width: 70px;
    height: 70px;
  }

  .update-option h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .stay-updated-section {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .stay-updated-box {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .stay-updated-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .stay-updated-header p {
    font-size: 0.95rem;
  }

  .update-option {
    padding: 1.25rem;
  }

  .update-icon {
    width: 60px;
    height: 60px;
  }

  .update-icon svg {
    width: 36px;
    height: 36px;
  }

  .update-option h3 {
    font-size: 1.1rem;
  }

  .update-option p {
    font-size: 0.9rem;
  }

  .update-option .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}