@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family: ;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
}

h1 {
  text-align: center;
}

.business-header {
  position: absolute;
  top: 0px;
  left: 20px;
  transform: none;
  /* background: rgba(255, 255, 255, 0.95); */
  padding: 24px 32px;
  border-radius: 6px;
  /* backdrop-filter: blur(20px); */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.business-header h1 {
  font-family: Georgia, Times, serif;
  color: #1e40af;
  margin: 0;
  text-align: left;
  font-size: 2.3rem;
}

.business-header img {
  size: 20%;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #6593e4 0%, #6593e4 0%); */
  /* opacity: 0.9; */
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('1.1.PNG');
  background-size: cover;
  background-position: 100% 100%;
  /* opacity: 0.2; */
  /* mix-blend-mode: overlay; */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.content {
  padding: 0px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e40af;
  margin: 60px 0 32px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
  text-align: center;
}

.content li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 8px;
}

.content ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
}

.content ul li {
  position: relative;
  padding-left: 24px;
}

.content ul li::before {
  /* content: '•'; */
  color: #60a5fa;
  font-size: 1.2em;
  position: absolute;
  left: 0;
}

.service-item {
  margin-bottom: 40px;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  border-color: #93c5fd;
}

.service-item h3 {
  font-size: 1.4rem;
  color: #1e40af;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-item ul {
  margin-top: 12px;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  margin: 60px auto;
  border-radius: 2px;
}

.contact-footer {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 48px 20px;
  text-align: center;
  border-top: 4px solid #3b82f6;
  margin-top: 40px;
}

.contact-footer h5 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-footer p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-header {
    padding: 20px 24px;
    top: 20px;
    left: 20px;
  }
  
  .business-header h1 {
    font-size: 1.8rem;
  }
  
  .content {
    padding: 60px 20px;
  }
  
  .content h2 {
    font-size: 2rem;
  }
  
  .service-item {
    padding: 24px;
  }
}
