:root {
  --primary-color: #D4AF37;   /* rich gold - your sun! */
  --secondary-color: #1E3A5F; /* deep navy - trust & education */
  --accent-color: #C17817;    /* burnt gold - for hovers */
  --dark-bg: #0F1F35;         /* deep navy charcoal */
  --light-bg: #FAF8F5;        /* cream */
  --text-dark: #2A2A2A;       /* primary text */
  --text-light: #5A6C7D;      /* muted blue-grey */
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

/* Announcement Bar */
.announcement-bar {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 4rem 0;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 800px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
}

.about-section .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-section > .container > p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: 12px;
}

.about-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-card h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--light-bg);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex: 1;
}

/* CDA Section */
.cda-section {
  padding: 5rem 0;
  background: var(--white);
}

.cda-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
}

.cda-video {
  margin-bottom: 3rem;
}

.video-placeholder {
  background: #f0f0f0;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

.cda-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cda-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.cda-content > p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.cda-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
}

.cda-card h4 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cda-card ul {
  list-style: none;
  padding: 0;
}

.cda-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.cda-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.cda-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.cda-cta {
  background: var(--secondary-color);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
}

.cda-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cda-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Freebie Section */
.freebie-section {
  padding: 5rem 0;
  background: var(--primary-color);
  color: var(--white);
}

.freebie-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.freebie-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.freebie-list {
  list-style: none;
  margin-bottom: 2rem;
}

.freebie-list li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.freebie-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-image {
  max-width: 350px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-main h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-main p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-nav h4,
.footer-social h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-social p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .about-grid,
  .services-grid,
  .cda-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .freebie-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}