.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.wrapper .logo {
  filter: brightness(0) invert(1); /* Make logo white when on colored background */
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card .logo {
  max-width: 180px;
  margin-bottom: 2rem;
  filter: brightness(1) invert(0);
}

.service-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-description {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.option-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
}

.home-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--gradient);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(109, 57, 145, 0.2);
}

.home-button.button-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.home-button.button-outline:hover {
  background: var(--gradient);
  color: var(--text-light);
  border-color: transparent;
}

.button-text {
  font-size: 1.1rem;
}

.button-icon {
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .service-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card .logo {
    max-width: 120px;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .home-button {
    padding: 0.8rem 1.2rem;
  }
  
  .button-text {
    font-size: 1rem;
  }
}
