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

body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.6;
}

.navbar {
  background: white;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: bold;
}

.logo-sub {
  font-size: 0.85rem;
  color: #6b7280;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.hero {
  padding: 80px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: white;
}

.hero-content {
  flex: 1;
}

.top-text {
  color: #1d4ed8;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 32px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.primary-btn {
  background: #1d4ed8;
  color: white;
}

.secondary-btn {
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

.hero-image img {
  width: 380px;
  border-radius: 12px;
}

.services {
  padding: 80px 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  color: #1d4ed8;
  font-weight: bold;
  margin-bottom: 12px;
}

.services-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card,
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.service-card h3 {
  margin-bottom: 16px;
}

.about-preview {
  padding: 80px 8%;
  background: white;
}

.about-text {
  max-width: 800px;
}

.about-text h2 {
  margin-bottom: 24px;
  font-size: 2.3rem;
}

.about-text p {
  margin-bottom: 20px;
}

.testimonial-section {
  padding: 80px 8%;
}

.contact-banner {
  background: #1d4ed8;
  color: white;
  text-align: center;
  padding: 80px 8%;
}

.contact-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-banner .secondary-btn {
  border: 1px solid white;
  color: white;
}

.footer {
  background: #111827;
  color: white;
  padding: 50px 8%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #374151;
  padding-top: 20px;
  color: #9ca3af;
}

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .page-hero {
  background: white;
  padding: 100px 8% 80px;
}

.page-hero-content {
  max-width: 800px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.page-hero p {
  color: #4b5563;
  font-size: 1.1rem;
}

.practice-section {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.practice-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.practice-card h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.practice-card p {
  margin-bottom: 20px;
  color: #4b5563;
}

.practice-card ul {
  padding-left: 20px;
}

.practice-card li {
  margin-bottom: 10px;
}

.consultation-banner {
  background: #1d4ed8;
  color: white;
  padding: 80px 8%;
  text-align: center;
}

.consultation-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
}