:root {
  --accent-color: #1a73e8;
  --dark-color: #1a1a1a;
  --light-bg: #f7f9fc;
  --card-bg: #ffffff;
}

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

body {
  font-family: Arial, sans-serif;
  background-color: var(--light-bg);
  color: #333;
  line-height: 1.6;
}

header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .logo {
  font-size: 14px;
  font-weight: bold;
  color: var(--accent-color);
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-button {
  background: var(--accent-color);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cta-button {
    font-size: 14px;
    padding: 10px 16px;
    min-width: 120px;
  }
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
}

.side-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.side-nav.open {
  right: 0;
}

.side-nav a {
  display: block;
  margin-bottom: 20px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.side-nav .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--accent-color);
  cursor: pointer;
}

.hero {
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
              url('images/lifcon1.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #333;
}

nav.section-nav {
  background: var(--accent-color);
  color: white;
  text-align: center;
  padding: 10px 0;
}

nav.section-nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--accent-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.process-step {
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.process-step h3 {
  color: var(--accent-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

/* Updated: step-number now square with 4px rounded edges */
.step-number {
  background: var(--accent-color);
  color: white;
  border-radius: 4px; /* changed from 50% to 4px */
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-section {
  background: #fff;
  padding: 60px 20px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-box {
  background: white;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.benefit-box i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card .price {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pricing-card li {
  margin-bottom: 10px;
}

.light-bg {
  background-color: #ffffff;
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  background: var(--accent-color);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #1a73e8;
  text-decoration: underline;
}
