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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #333;
}

.nav-cta {
  background: #333 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 5px !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 70px;
  padding: 80px 20px;
  max-width: 1200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.hero-content h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #333;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  background: #333;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #555;
}

.team-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 400px;
}

.photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-1 { background: #8B7FD6; }
.photo-2 { background: #FF9B9B; }
.photo-3 { background: #90EE90; }
.photo-4 { background: #87CEEB; }
.photo-5 { background: #FFB6C1; }
.photo-6 { background: #F0E68C; }

/* About Section */
.about {
  background: #fff;
  padding: 80px 20px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-features {
  list-style: none;
}

.about-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.about-features li:before {
  content: "•";
  color: #333;
  position: absolute;
  left: 0;
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Partners Section */
.partners {
  background: #f8f9fa;
  padding: 60px 20px;
}

.partners-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.partner-logo img {
  height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover img {
  opacity: 1;
}

/* Legal Solutions Section */
.legal-solutions {
  background: #666;
  color: #fff;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-content .section-label {
  color: #ccc;
}

.solutions-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.solutions-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.solutions-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Services Section */
.services {
  background: #fff;
  padding: 80px 20px;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.schedule-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.schedule-btn:hover {
  background: #555;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-item {
  text-align: center;
  padding: 40px 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #333;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background: #B8A9FF;
  padding: 80px 20px;
}

.testimonials-header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 60px;
}

.testimonials-header .section-label {
  color: #333;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: #333;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* Team Section */
.team {
  background: #fff;
  padding: 80px 20px;
}

.team-header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  /*max-width: 800px;*/
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.member-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.member-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.member-info span {
  font-size: 12px;
  color: #999;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.footer-logo-large span {
  font-size: 48px;
  font-weight: 700;
  color: #333;
}

.linkmails {
  text-decoration: none!important;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #666;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .team-photos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    margin: 0 auto;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .legal-solutions {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partners-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .about-text h2,
  .solutions-content h2,
  .services-header h2,
  .testimonials-header h2,
  .team-header h2 {
    font-size: 28px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
