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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Logo Header */
.logo-header {
  background: #fbfdfb;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-logo {  
  height: 100px;
  width: auto;
}

.social-buttons {
  display: flex;
  gap: 0.5rem;
}

.social-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e8e8e8;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-buttons a:hover {
  background: #d0d0d0;
  color: #333;
  transform: translateY(-2px);
}

.social-buttons svg {
  width: 20px;
  height: 20px;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 600;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 200px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #f77f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: white;
}

.step h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}

.premium-note {
  color: #666;
  font-style: italic;
  margin-top: 2rem;
}

/* Main Services Section */
.main-services {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.main-services h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 600;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #fff4e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-content p {
  color: #666;
  line-height: 1.5;
}

.view-all-btn {
  background: #f77f00;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #e56f00;
}

/* Trust Section */
.trust-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.trust-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 600;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  justify-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: #f77f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.trust-item span {
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.2;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.testimonial-content {
  text-align: left;
  flex: 1;
  min-width: 300px;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  color: #666;
  font-weight: 500;
}

.testimonial-photo {
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f77f00;
}

.book-now-btn {
  background: #f77f00;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background: #e56f00;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .steps-container {
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .social-buttons {
    gap: 0.3rem;
  }
  
  .social-buttons a {
    width: 35px;
    height: 35px;
  }
}
