body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #232946 0%, #3eb5b6 100%);
  color: #3eb5b6;
}

header {
  background: #23283a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  margin-right: 12px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.company-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #bfc7e0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #23283a;
  background: #f76c8a;
}

.nav-links a.active {
  color: #23283a;
  background: #f76c8a;
  border-radius: 6px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 60px 20px;
  background: rgba(240, 250, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.1);
  margin-top: 40px;
  color: #232946;
}

.home-section {
  background: linear-gradient(120deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #232946;
  text-align: center;
  box-shadow: none;
}

.home-section h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}

.about-section {
  background: linear-gradient(120deg, #e0f7fa 60%, #b2ebf2 100%);
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f76c8a;
  margin-bottom: 1.2em;
}

.about-section p {
  font-size: 1.25rem;
  color: #23283a;
}

h2 {
  color: #f76c8a;
  font-size: 2rem;
  margin-bottom: 0.7em;
}

.service {
  margin-bottom: 2em;
}

.service h3 {
  color: #4fd1c5;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}

.service ul {
  margin: 0 0 0 1.2em;
  padding: 0;
  color: #222;
}

blockquote {
  font-style: italic;
  color: #4fd1c5;
  border-left: 4px solid #4fd1c5;
  margin: 1em 0;
  padding-left: 1em;
  background: #23283a;
}

footer {
  text-align: center;
  padding: 1.5em 0;
  background: #23283a;
  color: #bfc7e0;
  margin-top: 40px;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 1rem;
  }
  .section {
    padding: 50px 8px 40px 8px;
    margin-top: 20px;
  }
  .logo {
    height: 36px;
  }
  .company-name {
    font-size: 1.1rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Pricing Cards Grid */
.pricing-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pricing-card,
.pricing-card.highlight {
  background: linear-gradient(135deg, #2b3a55 0%, #3a506b 100%);
  color: #f3f3f3;
  box-shadow: 0 2px 16px rgba(30, 64, 175, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, background 0.2s;
}

.pricing-card.highlight {
  box-shadow: 0 4px 32px #f76c8a33;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  color: inherit;
}

.pricing-features li {
  margin-bottom: 0.3em;
}

.pricing-btn {
  background: #f76c8a;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.7em 2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.pricing-btn:hover {
  background: #23283a;
  color: #f76c8a;
  border: 2px solid #f76c8a;
}

@media (max-width: 900px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.reviews-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.review-card {
  background: linear-gradient(135deg, #2b3a55 0%, #3a506b 100%);
  color: #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30, 64, 175, 0.1);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
  border: 3px solid #f76c8a;
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.7em;
}

.review-name {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #4fd1c5;
}

.review-stars {
  color: #f76c8a;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.reviews-section {
  background: linear-gradient(120deg, #e0f7fa 60%, #fce4ec 100%);
}

.services-section {
  background: linear-gradient(120deg, #e0f7fa 60%, #b2ebf2 100%);
}

.contact-section {
  background: linear-gradient(120deg, #e0f7fa 60%, #b2ebf2 100%);
}

.services-subtitle {
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3eb5b6 0%, #f76c8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin: 0.5em 0 1.5em 0;
  letter-spacing: 1px;
}

.contact-btn {
  display: inline-block;
  margin-top: 2em;
  padding: 0.9em 2.5em;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #3eb5b6 0%, #f76c8a 100%);
  border: none;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(30, 64, 175, 0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #f76c8a 0%, #3eb5b6 100%);
  color: #fff;
  box-shadow: 0 4px 24px #f76c8a33;
}
