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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #7fb3d3 0%, #5d9bd5 100%);
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127, 179, 211, 0.8) 0%, rgba(93, 155, 213, 0.9) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
  color: white;
}

.content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cross-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross-horizontal,
.cross-vertical {
  position: absolute;
  background: #7fb3d3;
  border-radius: 2px;
}

.cross-horizontal {
  width: 50px;
  height: 12px;
}

.cross-vertical {
  width: 12px;
  height: 50px;
}

.logo-text {
  color: white;
  text-align: left;
}

.clinic-name {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.location {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-image {
    width: 100%;
    opacity: 0.2;
  }
  
  .content {
    padding: 0 20px;
  }
  
  .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1.1rem;
  }
  
  .logo {
    gap: 15px;
  }
  
  .cross-icon {
    width: 50px;
    height: 50px;
  }
  
  .cross-horizontal {
    width: 40px;
    height: 10px;
  }
  
  .cross-vertical {
    width: 10px;
    height: 40px;
  }
  
  .clinic-name {
    font-size: 1.2rem;
  }
  
  .location {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  .footer {
    padding: 30px 20px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .cross-icon {
    width: 40px;
    height: 40px;
  }
  
  .cross-horizontal {
    width: 32px;
    height: 8px;
  }
  
  .cross-vertical {
    width: 8px;
    height: 32px;
  }
  
  .clinic-name {
    font-size: 1.1rem;
  }
  
  .location {
    font-size: 0.9rem;
  }
}
