:root {
  --accent: #0A4D8C;
  --text: #1a1a1a;
  --muted: #666;
  --border: #e5e5e5;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.header-ctas .btn {
  margin-left: 12px;
}

/* Buttons */
.btn {
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 100px 0 80px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.subheadline {
  font-size: 18px;
  color: var(--muted);
}

.hero-ctas {
  margin-top: 24px;
}

.hero-ctas .btn {
  margin-right: 12px;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* Sections */
section {
  padding: 40px 0;
}

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

.box,
.step {
  border: 1px solid var(--border);
  padding: 24px;
}

.step-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Pricing */
.pricing-box {
  border: 1px solid var(--border);
  padding: 32px;
}

.pricing-note {
  font-size: 14px;
  color: var(--muted);
}

/* Proof */
blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 24px 0;
  color: var(--muted);
}

blockquote span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 14px;
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  .header-ctas {
    display: none;
  }
}
.footer-logo{
    display: flex;
}
.footer-logo-text{
    vertical-align: middle;
    margin-top: 10px;
}

/* Image Styles */
.responsive-image {
  width: 100%;
  height: 60vh;
  display: block;
}

/* Hero Image */
.hero-image {
  margin: 2rem auto;
  max-width: 800px;
}

/* Section Images */
.section-image {
  margin: 2rem auto 3rem;
  max-width: 800px;
}

/* What We Do Box Images */
.box-image {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* How It Works Step Images */
.step-image {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-note-image {
  margin: 2rem auto;
  max-width: 600px;
}

/* Pricing Image */
.pricing-image {
  margin: 0 auto 2rem;
  max-width: 400px;
}

/* Proof/Testimonial Images */
.quote-image {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  height: 120px;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legal Links Image */
.legal-image {
  margin: 0 auto 1.5rem;
  max-width: 300px;
}

/* Footer Brand Image */
.footer-brand-image {
  margin: 0 auto 2rem;
  max-width: 400px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .box-image {
    height: 150px;
  }
  
  .step-image {
    height: 120px;
  }
  
  .quote-image {
    height: 100px;
  }
  
  .hero-image,
  .section-image {
    margin: 1.5rem auto;
  }
}

@media (max-width: 480px) {
  .box-image {
    height: 120px;
  }
  
  .step-image {
    height: 100px;
  }
  
  .quote-image {
    height: 80px;
  }
}

.hero-image{
  width: 100vw;
}