:root {
  --primary: #2563eb;
  --dark: #1e293b;
  --light: #f8fafc;
  --text: #334155;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  font-family: 'Inter', sans-serif; 
  line-height: 1.6; 
  color: var(--text); 
  background: var(--white);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }

/* Navbar */
.navbar { 
  position: fixed; width: 100%; top: 0; background: rgba(255,255,255,0.9); 
  backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; z-index: 100;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 70px; }
nav a { text-decoration: none; color: var(--dark); margin-left: 1.5rem; font-weight: 500; }
.nav-cta { color: var(--primary); border: 1px solid var(--primary); padding: 0.5rem 1rem; border-radius: 5px; }

/* Hero */
.hero { background: var(--light); text-align: center; padding: 160px 0 100px; }
.hero h1 { font-size: 3rem; color: var(--dark); margin-bottom: 1rem; }
.highlight { color: var(--primary); }
.subtitle { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 6px; text-decoration: none; font-weight: bold; cursor: pointer; border: none; }
.primary { background: var(--primary); color: var(--white); }
.secondary { background: #e2e8f0; color: var(--dark); margin-left: 1rem; }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card { padding: 2rem; border: 1px solid #e2e8f0; border-radius: 12px; transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-color: var(--primary); }

/* Form */
.form-wrapper { max-width: 600px; margin: 0 auto; background: var(--light); padding: 3rem; border-radius: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
input, textarea { width: 100%; padding: 0.8rem; border: 1px solid #cbd5e1; border-radius: 6px; margin-bottom: 1rem; box-sizing: border-box;}

footer { text-align: center; padding: 40px 0; border-top: 1px solid #e2e8f0; }

.card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns text to the left for a professional look */
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  border-color: var(--primary);
}

.card h3 {
  margin: 1rem 0 0.5rem 0;
  color: var(--dark);
  font-size: 1.4rem;
}

.card .icon {
  background: var(--light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
}

/* About Section Styles */
.about-text .lead {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.philosophy-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.philosophy-box h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.pillars li {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary);
}

.pillars strong {
  display: block;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary); /* The blue we defined earlier */
}