:root {
  --primary: #0066cc;
  --text: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
}

.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #0052a3;
  color: white;
  text-decoration: none;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: center;
}

.benefit-item img {
  width: 64px;
  margin-bottom: 1rem;
}

.results {
  background: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}

.before-after {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.before-after img {
  max-width: 400px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.booking-cta {
  margin: 2rem auto;
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

.service-features {
  margin-top: 2rem;
  color: #666;
  line-height: 2;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .before-after {
    flex-direction: column;
  }
}

.hero-note {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.highlight {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 500;
}

.testimonial {
  margin-top: 3rem;
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.result-image {
  text-align: center;
}

.result-image p {
  margin-top: 0.5rem;
  font-weight: 500;
}

.booking-note {
  color: #666;
  margin-bottom: 2rem;
}

.contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

button {
  transition: background-color 0.3s;
}

button:hover {
  background: #0052a3;
}

.tech-icon, .guarantee-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonials {
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
}

.rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-info i {
    font-size: 2.5rem;
    color: #666;
}

.customer-info p {
    margin: 0;
    font-weight: 500;
}

.customer-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
} 