body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #121212;
  color: #f1f1f1;
}

a {
  text-decoration: none;
}

header {
  background: #1a1a1a;
  padding: 50px 20px;
  text-align: center;
}

.hero-content p {
  font-size: 1.4rem;
  color: #eee;
  max-width: 800px;
  margin: auto;
}

.cta-buttons {
  margin-top: 25px;
}

.cta-btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.2s;
}

.cta-btn.primary {
  background: #ffb400;
  color: #000;
}

.cta-btn.primary:hover {
  background: #e09c00;
}

.cta-btn.secondary {
  background: #00c853;
  color: #fff;
}

.cta-btn.secondary:hover {
  background: #009f41;
}

.cta-btn.outline {
  border: 2px solid #ffb400;
  color: #ffb400;
}

.cta-btn.outline:hover {
  background: #ffb400;
  color: #000;
}

.cta-btn.big {
  font-size: 1.3rem;
  padding: 16px 32px;
}

.container {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
}

section {
  margin-bottom: 50px;
}

.card {
  background: #1e1e1e;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin: 0 auto 50px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .card {
    max-width: 860px;
  }
}

.service-block h2,
.testimonial-section h2,
.origin-story h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-block p,
.testimonial-section p,
.contact-cta p,
.trust p,
.origin-story p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
  color: #ccc;
  font-size: 1.05rem;
}

ul li::before {
  content: "\2714";
  color: #00c853;
  position: absolute;
  left: 0;
  top: 0;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.testimonial-card {
  position: absolute;
  left: 100%;
  opacity: 0;
  width: 100%;
  transition: all 0.5s ease;
  background: #252525;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.testimonial-card.active {
  left: 0;
  opacity: 1;
}

.testimonial-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 10px;
}

.company-intro {
  margin-top: 30px;
}

.company-intro h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.company-intro p {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.testimonial-card span {
  color: #bbb;
  font-weight: bold;
}

.testimonial-nav {
  margin-top: 15px;
  text-align: center;
}

.testimonial-nav button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 1.1rem;
  cursor: pointer;
}

.testimonial-nav button:hover {
  background: #555;
}

.contact-cta {
  text-align: center;
}

footer {
  background: #0f0f0f;
  color: #777;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.origin-story {
  border-left: 6px solid #ffb400;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-btn {
    display: block;
    width: 100%;
    margin: 10px auto;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .card {
    padding: 20px;
    border-radius: 12px;
  }
}
