@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
  --primary: #23272F;
  --accent: #FF7A59;
  --background: #F7F6F3;
  --secondary: #F4D9B6;
  --highlight: #4BE1A0;
  --text: #181818;
  --card-radius: 20px;
  --shadow: 0 4px 32px rgba(35,39,47,0.07);
  --shadow-hover: 0 8px 40px rgba(35,39,47,0.13);
}
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  box-sizing: border-box;
  max-width: 100vw;
}
/* --- Navbar Tidy Up --- */
.site-header {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  transition: background 0.3s, box-shadow 0.3s, position 0.3s;
}
.site-header.scrolled {
  background: #181a1b;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  border-bottom: 1.5px solid #23272f;
  position: fixed;
  z-index: 1002;
}
/* --- Premium Nav Layout --- */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
}
.logo-area {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.nav-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  width: auto;
  text-align: left;
  padding: 0;
  border-bottom: none;
}
nav a {
  color: #fff;
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0.7rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
nav a.active, nav a:focus {
  color: #ff7a59;
  background: none;
}
nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff7a59;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
nav a:hover::after, nav a.active::after {
  width: 100%;
}
nav a:hover {
  color: #ff7a59;
}
.theme-toggle {
  margin-left: 2.5rem;
  margin-right: 0;
  align-self: center;
}
/* --- Desktop Nav Fix --- */
@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }
  nav {
    display: block !important;
    position: static;
    width: auto;
  }
  nav ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    gap: 2.5rem;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    z-index: 1004;
  }
  nav ul li {
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: none;
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }
  
  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
  }
  
  .nav-toggle .bar:nth-child(1) {
    top: 16px;
  }
  
  .nav-toggle .bar:nth-child(2) {
    top: 22px;
  }
  
  .nav-toggle .bar:nth-child(3) {
    top: 28px;
  }
  
  .site-header.nav-open .nav-toggle .bar:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }
  
  .site-header.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  
  .site-header.nav-open .nav-toggle .bar:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .nav-toggle {
    display: block;
  }
  nav {
    display: none;
    position: relative;
    width: auto;
  }
  .site-header.nav-open nav {
    display: block;
  }
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 26, 27, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
  }
  
  .site-header.nav-open nav ul {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
  nav ul li {
    width: auto;
    text-align: center;
    padding: 0;
    border-bottom: none;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .site-header.nav-open nav ul li:nth-child(1) { animation-delay: 0.1s; }
  .site-header.nav-open nav ul li:nth-child(2) { animation-delay: 0.2s; }
  .site-header.nav-open nav ul li:nth-child(3) { animation-delay: 0.3s; }
  .site-header.nav-open nav ul li:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  nav ul li a {
    font-size: 2rem !important;
    font-weight: 600 !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }
  
  nav ul li a:hover {
    background: rgba(255, 122, 89, 0.1) !important;
    transform: translateY(-2px) !important;
  }
  .header-flex {
    flex-wrap: nowrap;
  }
  .logo-area {
    flex: 0 0 auto;
  }
  .nav-toggle {
    margin-left: auto;
  }
  .theme-toggle {
    margin-left: 0.5rem;
    margin-right: 0;
  }
  .header-flex {
    gap: 0.2rem;
  }
  .nav-center {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .theme-toggle {
    margin-left: 0.5rem;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(120deg, #181a1b 0%, #23272f 60%, #ff7a59 100%);
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,122,89,0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(75,225,160,0.10) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: hero-bg-float 8s ease-in-out infinite alternate;
}
@keyframes hero-bg-float {
  0% { background-position: 60% 40%, 20% 80%; }
  100% { background-position: 65% 45%, 25% 85%; }
}
.hero-flex {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 7rem 0 4rem 0;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.hero-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) 0.2s both;
}
.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 2.2rem;
  text-shadow: 0 4px 32px rgba(24,26,27,0.18);
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) 0.3s both;
}
.hero-sub {
  font-size: 1.5rem;
  color: #ff7a59;
  font-weight: 600;
  margin-bottom: 2.8rem;
  max-width: 600px;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) 0.5s both;
}
.cta-btn, a.cta-btn, button.cta-btn {
  background: #ff7a59 !important;
  color: #181a1b !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 1.2rem 2.8rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(255,122,89,0.15) !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
  font-family: 'DM Sans', Arial, sans-serif !important;
  line-height: 1.2 !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.cta-btn:hover, a.cta-btn:hover, button.cta-btn:hover {
  background: #fff !important;
  color: #ff7a59 !important;
  box-shadow: 0 6px 25px rgba(255,122,89,0.2) !important;
  transform: translateY(-2px) !important;
}

.cta-btn:active, a.cta-btn:active, button.cta-btn:active {
  transform: translateY(0) !important;
  transition: all 0.1s !important;
}

.cta-btn:focus, a.cta-btn:focus, button.cta-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255,122,89,0.3), 0 6px 25px rgba(255,122,89,0.2) !important;
}

/* Secondary Button Styles */
.secondary-btn, button.secondary-btn {
  background: transparent !important;
  color: #fff !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 1.125rem 2.725rem !important;
  border: 2px solid #fff !important;
  border-radius: 50px !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  font-family: 'DM Sans', Arial, sans-serif !important;
  line-height: 1.2 !important;
  text-align: center !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
}

.secondary-btn:hover, button.secondary-btn:hover {
  background: #fff !important;
  color: #23272f !important;
  border-color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2) !important;
  box-sizing: border-box !important;
}

.secondary-btn:active, button.secondary-btn:active {
  transform: translateY(0) !important;
  transition: all 0.1s !important;
  box-sizing: border-box !important;
}

.secondary-btn:focus, button.secondary-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 20px rgba(255, 255, 255, 0.2) !important;
  box-sizing: border-box !important;
}
.hero-photo {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) 1s both;
}
.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 8px 32px rgba(255,122,89,0.18);
  transition: box-shadow 0.18s, transform 0.13s;
}
.profile-img:hover {
  box-shadow: 0 16px 48px rgba(255,122,89,0.28);
  transform: scale(1.04);
}
.dict-animation {
  font-family: 'Courier New', Courier, monospace;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1.2rem;
  min-height: 4.5rem;
}
/* --- Blazon-inspired How I Help & Process --- */
.how-section {
  background: #181a1b;
  padding: 7rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -20%; left: 60%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,89,0.10) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  animation: float-accent 10s ease-in-out infinite alternate;
}
@keyframes float-accent {
  0% { left: 60%; top: -20%; }
  100% { left: 65%; top: -10%; }
}
.how-section h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
  z-index: 2;
  position: relative;
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.8rem;
  position: relative;
  z-index: 2;
}
.how-card {
  background: rgba(35,39,47,0.85);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(255,122,89,0.07);
  border: 2px solid rgba(255,122,89,0.18);
  padding: 2.5rem 1.8rem 2.2rem 1.8rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.18s, transform 0.13s, border 0.18s;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) both;
  opacity: 0;
  transform: translateY(40px);
}
.how-card.visible {
  opacity: 1;
  transform: none;
}
.how-card:hover {
  box-shadow: 0 8px 40px rgba(255,122,89,0.18);
  border: 2px solid #ff7a59;
  transform: translateY(-3px) scale(1.025);
}
.how-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.how-icon i {
  font-size: 2.2rem;
  color: #fff;
  background: linear-gradient(135deg, #ff7a59 60%, #4be1a0 100%);
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 12px rgba(255,122,89,0.13);
}
.how-card h3 {
  color: #ff7a59;
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.how-card p {
  font-size: 1.08rem;
  color: #f7f6f3;
  font-weight: 500;
}
.process-section {
  background: #23272f;
  padding: 7rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 70%; left: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(75,225,160,0.10) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  animation: float-accent2 12s ease-in-out infinite alternate;
}
@keyframes float-accent2 {
  0% { left: -20%; top: 70%; }
  100% { left: -10%; top: 75%; }
}
.process-section h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
  z-index: 2;
  position: relative;
}
.process-steps {
  display: flex;
  gap: 2.8rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.process-step {
  background: rgba(35,39,47,0.85);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(75,225,160,0.07);
  border: 2px solid rgba(75,225,160,0.18);
  padding: 2.5rem 1.8rem 2.2rem 1.8rem;
  text-align: center;
  flex: 1 1 260px;
  max-width: 340px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.18s, transform 0.13s, border 0.18s;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) both;
  opacity: 0;
  transform: translateY(40px);
}
.process-step.visible {
  opacity: 1;
  transform: none;
}
.process-step:hover {
  box-shadow: 0 8px 40px rgba(75,225,160,0.18);
  border: 2px solid #4be1a0;
  transform: translateY(-3px) scale(1.025);
}
.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #4be1a0 60%, #ff7a59 100%);
  color: #23272f;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(75,225,160,0.10);
}
.process-step h4 {
  color: #4be1a0;
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.process-step p {
  font-size: 1.08rem;
  color: #f7f6f3;
  font-weight: 500;
}
/* --- Blazon-inspired Testimonials, Contact, Footer --- */
.testimonials-section {
  background: #181a1b;
  padding: 7rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 10%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,89,0.10) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  animation: float-accent 10s ease-in-out infinite alternate;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
  z-index: 2;
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.8rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
blockquote {
  background: rgba(35,39,47,0.85);
  border-left: 6px solid #ff7a59;
  border-radius: 18px;
  padding: 2.2rem 2rem;
  font-style: italic;
  color: #fff;
  margin: 0;
  box-shadow: 0 4px 32px rgba(255,122,89,0.07);
  font-size: 1.18rem;
  font-weight: 600;
  transition: box-shadow 0.18s, transform 0.13s, border 0.18s;
  animation: fade-in-up 1.2s cubic-bezier(.4,0,.2,1) both;
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(6px);
  position: relative;
}
blockquote.visible {
  opacity: 1;
  transform: none;
}
blockquote span {
  display: block;
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: #ff7a59;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
}
blockquote em, blockquote strong {
  color: #4be1a0;
  font-style: normal;
  font-weight: 700;
}
blockquote:hover {
  box-shadow: 0 8px 40px rgba(255,122,89,0.18);
  border-left: 6px solid #4be1a0;
  transform: scale(1.02);
}
.contact-section {
  background: #23272f;
  padding: 7rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #ff7a59;
  box-shadow: 0 -4px 32px rgba(255,122,89,0.07);
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -20%; left: 60%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(75,225,160,0.10) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  animation: float-accent2 12s ease-in-out infinite alternate;
}
.contact-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.contact-info {
  color: #fff;
  text-align: center;
  max-width: 600px;
}
.contact-info h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ff7a59;
  margin-bottom: 1.5rem;
}
.contact-info p, .contact-info a {
  color: #f7f6f3;
  font-size: 1.13rem;
  font-weight: 500;
}
.contact-info a:not(.cta-btn) {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-info a:not(.cta-btn):hover {
  color: #ff7a59;
}
.site-footer {
  background: #181a1b;
  color: #bdbdbd;
  text-align: center;
  padding: 2.5rem 0 1.2rem 0;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border-top: 2px solid #23272f;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
}
.site-footer a {
  color: #ff7a59;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.18s;
}
.site-footer a:hover {
  color: #4be1a0;
}
@media (max-width: 900px) {
  .hero-flex, .contact-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-photo {
    margin-top: 2.5rem;
  }
  .contact-form, .contact-info {
    width: 100%;
    max-width: 540px;
  }
  .how-cards, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-header {
    background: #181a1b;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    border-bottom: 1.5px solid #23272f;
    position: fixed;
  }
  .header-flex {
    padding: 1.2rem 0 1.2rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  .how-cards, .process-steps {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .contact-info {
    width: 100%;
    max-width: 540px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .nav-toggle {
    background: none !important;
    box-shadow: none !important;
  }
  .nav-toggle i {
    background: none !important;
    box-shadow: none !important;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding-top: 4rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 1.3rem;
  }
  .cta-btn {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 280px;
    text-align: center !important;
    margin: 0 auto;
    display: block;
    letter-spacing: 0 !important;
    vertical-align: middle !important;
    font-family: 'DM Sans', Arial, sans-serif !important;
  }
  
  .secondary-btn {
    padding: 1.025rem 2.325rem !important;
    font-size: 1.1rem !important;
    width: 100%;
    max-width: 280px;
    margin: 1rem auto !important;
    display: block;
    text-align: center !important;
    letter-spacing: 0 !important;
    vertical-align: middle !important;
    font-family: 'DM Sans', Arial, sans-serif !important;
  }
} 
.logo-text {
  color: #fff !important;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
} 
/* Reset default anchor styles for CTA buttons */
a.cta-btn {
  text-decoration: none;
  color: inherit;
}

/* Ensure consistent button sizing */
.cta-btn, a.cta-btn, button.cta-btn {
  box-sizing: border-box;
  white-space: nowrap;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 26, 27, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #23272f;
  font-family: 'DM Sans', Arial, sans-serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.modal-body {
  padding: 0;
  overflow: auto;
  max-height: calc(90vh - 100px);
}

.modal-body iframe {
  display: block;
  border: none;
  width: 100%;
  min-height: 600px;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal {
    padding: 1rem;
  }
  
  .modal-content {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 1.5rem 2rem 1rem 2rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-body iframe {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 0.5rem;
  }
  
  .modal-content {
    border-radius: 12px;
  }
  
  .modal-header {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
  }
  
  .modal-body iframe {
    min-height: 450px;
  }
} 