@import "https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100vh; max-width: 100%; width: 100%; font-family: "Poppins", sans-serif; scroll-behavior: smooth; transition: scroll-behavior .5s; position: relative; }
main { position: relative; top: 80px; left: 0; width: 100%; }
@media(min-width: 576px) { main { top: 100px; } }
@media(min-width: 576px) { main { top: 115px; } }
li { list-style-type: none; }
a { text-decoration: none; }
img { display: block; width: 100%; }

.btn-primary { padding: 1rem 2.5rem; background-color: #830000; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #830000; border-radius: 12px; transition: all .4s ease; box-shadow: 0 8px 20px rgba(131,0,0,.15); display: inline-block; text-align: center; }
.btn-primary:hover { background-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,75,127,.15); }
.btn-secondary { padding: 1rem 2.5rem; background-color: transparent; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #fff; border-radius: 12px; transition: all .4s ease; display: inline-block; text-align: center; }
.btn-secondary:hover { background-color: #fff; color: #0b4b7f; transform: translateY(-3px); }

/* Navigation */
header { width: 100%; position: fixed; top: 0; left: 0; z-index: 999; }
nav { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1rem; background: #fff; box-shadow: 0 2px 10px rgba(11,75,127,.06); transition: all .4s ease; }
nav.removeBg { background-color: rgba(0,0,0,0); box-shadow: 0 2px 10px rgba(0,0,0,0); }
.homepage-nav { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: -webkit-backdrop-filter .5s; transition: backdrop-filter .5s; transition: backdrop-filter .5s, -webkit-backdrop-filter .5s; }
@media(min-width: 768px) { .homepage-nav { -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0); } }
.homepage-nav.removeFilter { -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0); }
@media(min-width: 576px) { nav { padding: 2rem 2rem; } }
@media(min-width: 768px) { nav { padding: 2.5rem 1.5rem; } }
@media(min-width: 992px) { nav { padding: 2.5rem 2.5rem; } }
@media(min-width: 1200px) { nav { padding: 2.5rem 3rem; } }
nav .logo-wrapper { width: 100%; flex: 1 1 50%; display: flex; align-items: center; gap: 1rem; position: relative; }
@media(min-width: 768px) { nav .logo-wrapper { flex: 1 1 20%; } }
nav .logo-wrapper .logo-tag { display: flex; align-items: center; }
nav .logo { position: absolute; left: 0; opacity: 0; width: 130px; height: auto; transition: opacity .5s ease-in-out; }
@media(min-width: 992px) { nav .logo { width: 150px; } }
nav .logo { position: absolute; left: 0; opacity: 0; width: 70px; height: 70px; transition: opacity .5s ease-in-out; }
nav .logo.visible { opacity: 1; }
nav .brand-name { position: absolute; left: 0; transition: opacity .5s ease-in-out; }
nav .brand-name img { width: 150px; }
nav .brand-name.hidden { opacity: 0; }
nav .nav-tags { width: 100%; flex: 1 1 50%; display: flex; align-items: center; justify-content: flex-end; }
@media(min-width: 768px) { nav .nav-tags { flex: 1 1 80%; } }

/* Links */
.link-tags { display: none; transition: opacity .5s ease-in-out; }
@media(min-width: 768px) { .link-tags { display: flex; } }
nav .link-tags.hidden { opacity: 0; pointer-events: none; }
.link-tags li { padding-inline: .875rem; }
@media(min-width: 992px) { .link-tags li { padding-inline: 1.5rem; letter-spacing: .1rem; } }
@media(min-width: 1200px) { .link-tags li { padding-inline: 2rem; letter-spacing: .1rem; } }
.link-tags li a { font-size: .875rem; font-weight: 500; color: #2d4a66; position: relative; transition: color .3s ease; }
.link-tags li a::after { content: ""; width: 0; height: 2px; background-color: #830000; position: absolute; left: 0; bottom: -6px; transition: width .4s ease; }
.link-tags li a.active::after { width: 100%; }
.link-tags li a:hover::after { width: 100%; }
.link-tags li .tag.active a { color: #830000; font-weight: 600; }

/* Menu Button */
.menu-btn { width: 50px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 1rem; padding: 0 .875rem; border: none; outline: none; cursor: pointer; box-sizing: content-box; }
.menu-btn:hover { background-color: rgba(131,0,0,.05); border-color: #830000; }
.menu-btn .bars { width: 25px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
.menu-btn .bars span { display: block; width: 100%; height: 2px; background-color: #2d4a66; transition: background-color .4s; border-radius: 2px; }
@media screen and (min-width: 992px) { 
  .menu-btn { width: 60px; height: 30px; padding: .25rem 1.25rem; border-radius: 1.5rem; }
  .menu-btn .bars { width: 35px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
}

/* Slider Menu */
.menu-slider { position: fixed; top: 0; right: 0; height: 100vh; width: 80%; background-color: #f5f7fa; z-index: 11; padding: 2rem; transform: translateX(100%); transition: transform .7s; }
@media(min-width: 576px) { .menu-slider { width: 50%; } }
@media(min-width: 768px) { .menu-slider { width: 40%; } }
@media(min-width: 992px) { .menu-slider { width: 30%; } }
.menu-slider.translate { transform: translateX(0); }
.menu-slider-header { width: 100%; display: flex; justify-content: flex-end; }
.menu-slider-header .close-btn { display: flex; justify-content: center; align-items: center; font-size: 1.5rem; cursor: pointer; margin-bottom: 2rem; width: 40px; height: 40px; border-radius: 50%; transition: background-color .4s; background-color: #fff; }
.menu-slider-header .close-btn:hover { background-color: #e2e8f0; }
.menu-slider .brand .logo { display: flex; justify-content: center; margin-bottom: 2rem; }
.menu-slider .brand .logo img { width: 90px; height: 90px; }
@media(min-width: 500px) { .menu-slider .brand .logo img { width: 100px; height: 100px; } }
@media(min-width: 768px) { .menu-slider .brand .logo img { width: 110px; height: 110px; } }
.menu-slider-tags { margin-bottom: 6rem; }
.menu-slider-tags .tag a { font-size: 1rem; font-weight: 400; color: #2d3748; line-height: 3; transition: color .4s; position: relative; margin-bottom: 5rem; }
.menu-slider-tags .tag.active a { color: #386199; }
.menu-slider-tags .tag.active a::after { content: ""; width: 100%; height: 1px; background-color: #386199; position: absolute; left: 0; bottom: -5px; transition: width .5s; }
.menu-slider-tags .tag a:hover { color: #a53232; }
.menu-slider-tags .tag a::after { content: ""; width: 0; height: 1px; background-color: #386199; position: absolute; left: 0; bottom: -5px; transition: width .5s; }
.menu-slider-tags .tag a:hover::after { width: 100%; background-color: #a53232; }
.menu-slider-footer h4 { font-size: 1.125rem; font-weight: 700; color: #47253f; }
.menu-slider-footer a { display: block; width: -moz-fit-content; width: fit-content; line-height: 2; color: #386199; }

/* Footer */
footer { background: linear-gradient(135deg, #0b4b7f 0%, #3f6f95 100%); color: #fff; padding: 4rem 1.5rem 2rem; font-family: "Outfit", sans-serif; }
@media(min-width: 768px) { footer { padding: 6rem 2rem 3rem; } }
footer .container { max-width: 1400px; margin: 0 auto; }
.footer-upper { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(min-width: 768px) { .footer-upper { grid-template-columns: 1.5fr 2fr; } }
@media(min-width: 1024px) { 
  .footer-upper { grid-template-columns: 1fr 1fr 1fr; }
  .footer-upper .footer-brand { grid-column: span 1; }
  .footer-upper .footer-columns { grid-column: span 2; display: grid; grid-template-columns: repeat(3, 1fr); }
}
.footer-brand { text-align: center; }
@media(min-width: 768px) { .footer-brand { text-align: left; } }
.footer-brand .brand { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.footer-brand .tagline { font-size: 1.1rem; color: #a3bffa; margin-bottom: 2rem; max-width: 300px; margin-inline: auto; }
@media(min-width: 768px) { .footer-brand .tagline { margin-inline: 0 .1rem; } }
.footer-brand .social-icons { display: flex; gap: 1rem; justify-content: center; }
@media(min-width: 768px) { .footer-brand .social-icons { justify-content: flex-start; } }
.footer-brand .social-icons a { width: 50px; height: 50px; background: hsla(0,0%,100%,.1); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.5rem; transition: all .4s ease; }
.footer-brand .social-icons a:hover { background: rgb(207.5,0,0); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(131,0,0,.3); }
.footer-columns { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width: 576px) { .footer-columns { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .footer-columns { grid-template-columns: repeat(3, 1fr); } }
.footer-columns .column h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.footer-columns .column ul, .footer-columns .column p { list-style: none; padding: 0; margin: 0; }
.footer-columns .column a, .footer-columns .column p { display: block; color: #a3bffa; font-size: 1rem; line-height: 2; text-decoration: none; transition: color .3s ease; }
.footer-columns .column a:hover, .footer-columns .column p:hover { color: #fff; }
.footer-columns .contact-info { background-color: rgba(0,0,0,0); }
.footer-columns .contact-info .manual-pad { padding-top: 2.5rem; }
.footer-columns .newsletter { overflow: hidden; }
.footer-columns .newsletter p { color: #a3bffa; margin-bottom: 1.5rem; }
.footer-columns .newsletter form { display: flex; align-items: center; }
.footer-columns .newsletter form input { width: 100%; height: 40px; padding-inline: 1rem; background: #fff; border: none; color: gray; font-size: .875rem; }
.footer-columns .newsletter form input::-moz-placeholder { color: #a3bffa; }
.footer-columns .newsletter form input::placeholder { color: #a3bffa; }
.footer-columns .newsletter form input:focus { outline: none; border-color: #fff; color: #0b4b7f; }
.footer-columns .newsletter form .subscribe-btn { height: 40px; background: rgba(0,0,0,0); color: #fff; padding: .75rem 1rem; outline: none; border: 1px solid #fff; font-weight: 600; letter-spacing: .05rem; cursor: pointer; transition: all .4s ease; }
.footer-columns .newsletter form .subscribe-btn:hover { background: rgb(14,97,164); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid hsla(0,0%,100%,.15); text-align: center; }
.footer-bottom p { font-size: .95rem; color: #a3bffa; }
.footer-bottom p #year { color: rgb(207.5,0,0); font-weight: 600; }

/* Volunteer / Core Habits Section */
.volunteer { background: #fff; padding-bottom: 2rem; }
@media(min-width: 768px) { .volunteer { padding-bottom: 3rem; } }
.volunteer-subject { max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem 3rem; text-align: center; }
@media(min-width: 768px) { .volunteer-subject { padding: 6rem 3rem 4rem; display: flex; align-items: center; justify-content: center; gap: 4rem; text-align: left; } }
.volunteer-subject .volunteer-heading { font-family: "Outfit", sans-serif; font-size: 2.25rem; font-weight: 700; color: #0b4b7f; line-height: 1.2; margin: 0 0 1.5rem; }
@media(min-width: 768px) { .volunteer-subject .volunteer-heading { font-size: 2.875rem; margin: 0; flex: 1 1 50%; } }
@media(min-width: 1200px) { .volunteer-subject .volunteer-heading { font-size: 3.25rem; } }
.volunteer-subject .text p { color: #475569; font-size: 1.1rem; line-height: 1.8; max-width: 620px; margin: 0 auto; }
@media(min-width: 768px) { .volunteer-subject .text p { font-size: 1.2rem; margin: 0; flex: 1 1 50%; } }
.volunteer-opportunities .container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; }
@media(min-width: 992px) { .volunteer-opportunities .container { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.volunteer-opportunities .opportunity { background: #fff; overflow: hidden; transition: all .4s ease; border-bottom: 1px solid rgba(131,0,0,.12); }
@media(min-width: 992px) { 
  .volunteer-opportunities .opportunity { border-right: 1px solid rgba(131,0,0,.12); }
  .volunteer-opportunities .opportunity:first-child { border-left: 1px solid rgba(131,0,0,.12); }
}
.volunteer-opportunities .opportunity:hover { box-shadow: 0 15px 40px rgba(11,75,127,.08); transform: translateY(-10px); z-index: 2; }
.volunteer-opportunities .opportunity:hover img { transform: scale(1.08); }
.volunteer-opportunities .opportunity:hover h3 { color: #830000; }
.volunteer-opportunities .opportunity .subject { display: flex; flex-direction: column; }
@media(min-width: 576px) { .volunteer-opportunities .opportunity .subject { display: grid; grid-template-columns: 65% 35%; } }
@media(min-width: 992px) { .volunteer-opportunities .opportunity .subject { grid-template-columns: 1fr; } }
.volunteer-opportunities .opportunity .subject figure { overflow: hidden; margin: 0; }
@media(min-width: 992px) { .volunteer-opportunities .opportunity .subject figure { height: 480px; } }
.volunteer-opportunities .opportunity .subject img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform .6s ease; aspect-ratio: 9/5; }
@media(min-width: 576px) { .volunteer-opportunities .opportunity .subject img { aspect-ratio: 9/3; } }
@media(min-width: 992px) { .volunteer-opportunities .opportunity .subject img { aspect-ratio: 4/9; } }
.volunteer-opportunities .opportunity .subject h3 { font-size: 1.35rem; font-weight: 700; color: #1e293b; padding: 1.5rem; margin: 0; display: flex; align-items: center; justify-content: center; text-align: center; transition: color .4s ease; }
@media(min-width: 768px) { .volunteer-opportunities .opportunity .subject h3 { font-size: 1.5rem; padding: 2rem; } }

/* Donations / Expectations Section */
.donations { padding: 2rem 1.5rem 1rem; }
@media(min-width: 768px) { .donations { padding: 3rem 2rem 4rem; } }
.donations .container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 576px) { .donations .container { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .donations .container { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.donations .use { background: #fff; padding: 2rem; text-align: center; transition: all .4s ease; border: 1px solid rgba(0,0,0,0); }
@media(min-width: 992px) { 
  .donations .use { border-right: 1px solid rgba(131,0,0,.12); }
  .donations .use:last-child { border-right: none; }
}
.donations .use:hover { box-shadow: 0 15px 40px rgba(11,75,127,.08); transform: translateY(-8px); z-index: 2; }
.donations .use:hover h3 { color: #830000; }
.donations .use h3 { font-size: 1.35rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; transition: color .4s ease; }
@media(min-width: 768px) { .donations .use h3 { font-size: 1.5rem; } }
.donations .use p { color: #475569; font-size: 1.05rem; line-height: 1.8; margin: 0; }
@media(min-width: 768px) { .donations .use p { font-size: 1.1rem; } }

/* Partnership / Core Habits Details Section */
.partnership { width: 100%; background: #fff; padding-bottom: 4rem; }
@media(min-width: 768px) { .partnership { padding-bottom: 5rem; } }
@media(min-width: 1200px) { .partnership { padding-bottom: 6rem; } }
.partnership-subject { width: 100%; max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem 3rem; text-align: center; background-color: #fdf9f9; }
@media(min-width: 768px) { .partnership-subject { padding: 6rem 3rem 4rem; display: flex; align-items: center; justify-content: center; gap: 5rem; text-align: left; } }
.partnership-subject .partnership-heading { font-family: "Outfit", sans-serif; font-size: 2.25rem; font-weight: 700; color: #0b4b7f; line-height: 1.2; margin: 0 0 1.5rem; position: relative; }
@media(min-width: 768px) { .partnership-subject .partnership-heading { font-size: 2.875rem; margin: 0; flex: 1 1 50%; } }
@media(min-width: 1200px) { .partnership-subject .partnership-heading { font-size: 3.25rem; } }
.partnership-subject .partnership-heading::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -14px; width: 80px; height: 4px; background: #830000; border-radius: 2px; }
@media(min-width: 768px) { .partnership-subject .partnership-heading::after { left: 0; transform: none; } }
.partnership-subject .text p { color: #1a1b1d; font-size: 1.1rem; line-height: 1.8; max-width: 620px; margin: 0 auto; }
@media(min-width: 768px) { .partnership-subject .text p { font-size: 1.2rem; margin: 0; flex: 1 1 50%; } }
.partnership-opporrtunities .container { width: 100%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 576px) { .partnership-opporrtunities .container { grid-template-columns: repeat(2, 1fr); gap: 0; } }
@media(min-width: 768px) { .partnership-opporrtunities .container { grid-template-columns: repeat(3, 1fr); } }
.partnership-opporrtunities .opportunity { background: #fff; text-align: center; border: 1px solid rgba(0,0,0,0); transition: all .4s ease; }
@media(min-width: 768px) { .partnership-opporrtunities .opportunity { border-right: 1px solid rgba(131,0,0,.12); border-bottom: 1px solid rgba(131,0,0,.12); } }
@media(min-width: 850px) { 
  .partnership-opporrtunities .opportunity { border-radius: 0; border-right: 1px solid rgba(131,0,0,.12); box-shadow: none; }
  .partnership-opporrtunities .opportunity:first-child { border-radius: 1.75rem 0 0 1.75rem; }
  .partnership-opporrtunities .opportunity:last-child { border-radius: 0 1.75rem 1.75rem 0; }
  .partnership-opporrtunities .opportunity:nth-child(3) { border-radius: 0; }
}
.partnership-opporrtunities .opportunity:hover { background: #fdfafb; box-shadow: 0 18px 45px rgba(11,75,127,.09); transform: translateY(-8px); z-index: 2; }
.partnership-opporrtunities .opportunity:hover img { transform: scale(1.08); }
.partnership-opporrtunities .opportunity:hover h3 { color: #830000; }
.partnership-opporrtunities .opportunity .subject { display: grid; grid-template-columns: 80px 1fr; gap: .5rem; align-items: center; margin-bottom: 1.5rem; padding: 2rem 2rem 0; }
@media(min-width: 576px) { .partnership-opporrtunities .opportunity .subject { grid-template-columns: 1fr; text-align: center; padding: 2.5rem 2rem 0; } }
.partnership-opporrtunities .opportunity .subject figure { overflow: hidden; border-radius: 1.25rem; margin: 0; }
@media(min-width: 576px) { .partnership-opporrtunities .opportunity .subject figure { max-width: 100px; margin: 0 auto 1.5rem; } }
.partnership-opporrtunities .opportunity .subject img { width: 100%; height: 100%; aspect-ratio: 1/1.1; -o-object-fit: cover; object-fit: cover; border-radius: 1.25rem; transition: transform .6s ease; }
@media(min-width: 576px) { .partnership-opporrtunities .opportunity .subject img { aspect-ratio: 1/1; } }
.partnership-opporrtunities .opportunity .subject h3 { font-size: 1.35rem; font-weight: 700; color: #1e293b; line-height: 1.3; margin: 0; transition: color .4s ease; }
@media(min-width: 768px) { .partnership-opporrtunities .opportunity .subject h3 { font-size: 1.5rem; } }
.partnership-opporrtunities .opportunity p { padding: 0 2rem 2rem; font-size: 1.05rem; line-height: 1.8; color: #1a1b1d; margin: 0; }
@media(min-width: 768px) { .partnership-opporrtunities .opportunity p { font-size: 1.1rem; padding: 0 2.5rem 2.5rem; } }

/* FAQs Section */
.faqs { background: #f8f9fb; padding: 4rem 1.5rem 4rem; padding-bottom: 10rem; }
@media(min-width: 768px) { .faqs { padding: 6rem 3rem 5rem; } }
@media(min-width: 1200px) { .faqs { padding: 6rem 4rem 6rem; } }
.faqs-header { max-width: 1400px; margin: 0 auto 4rem; text-align: center; }
.faqs-header h2 { font-family: "Outfit", sans-serif; font-size: 2.5rem; font-weight: 700; color: #0b4b7f; line-height: 1.2; margin: 0; position: relative; display: inline-block; }
@media(min-width: 768px) { .faqs-header h2 { font-size: 3.25rem; } }
@media(min-width: 1200px) { .faqs-header h2 { font-size: 3.75rem; } }
.faqs-header h2::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -16px; width: 60px; height: 4px; background: #830000; border-radius: 2px; }
.accordion { max-width: 900px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid rgba(11,75,127,.12); transition: all .3s ease; }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.75rem 0; background: none; border: none; text-align: left; cursor: pointer; font-family: inherit; font-size: 1.2rem; font-weight: 600; color: #1e293b; transition: color .3s ease; }
@media(min-width: 768px) { .accordion-header { font-size: 1.35rem; padding: 2rem 0; } }
.accordion-header i { font-size: 1.6rem; color: #830000; transition: transform .4s ease; }
.accordion-header.active { color: #0b4b7f; }
.accordion-header.active i { transform: rotate(45deg); }
.accordion-header:hover:not(.active) { color: #0b4b7f; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.accordion-content p { padding: 0 0 2rem; font-size: 1.05rem; line-height: 1.8; color: #475569; margin: 0; }
@media(min-width: 768px) { .accordion-content p { font-size: 1.1rem; padding-bottom: 2.5rem; } }


/* =========================================================
   NEW CAMPAIGN SPECIFIC HERO & BUTTON TWEAKS
   These ensure the hero section content and CTAs look great
   ========================================================= */

.hero { position: relative; width: 100%; background-image: url("../assets/hero-bg/habit-tracker-hero.webp"); background-repeat: no-repeat; background-position: top; background-size: cover; display: flex; align-items: center; padding: 2rem; min-height: 70vh; }
@media(min-width: 768px) { .hero { padding: 3rem; } }
.hero .overlay { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.4); }
.hero .hero-content { position: relative; z-index: 2; width: 100%; margin-top: 6rem;}
.hero h1 { color: #fff; font-size: 2.5rem; line-height: 1.25; margin-bottom: 1.5rem; }
@media(min-width: 576px) { .hero h1 { max-width: 90%; } }
@media(max-width: 576px) { .hero { background-position: 50%; }
@media(min-width: 768px) { .hero h1 { font-size: 3.125rem; line-height: 1.5; max-width: 80%; } }
@media(min-width: 992px) { .hero h1 { max-width: 70%; font-size: 4rem; } }

.hero-subtext { color: #f1f5f9; font-size: 1.1rem; line-height: 1.8; max-width: 600px; margin-bottom: 2.5rem; }
@media(min-width: 768px) { .hero-subtext { font-size: 1.25rem; } }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 1rem 2.5rem; background-color: #830000; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #830000; border-radius: 12px; transition: all .4s ease; box-shadow: 0 8px 20px rgba(131,0,0,.15); display: inline-block; text-align: center; }
.hero-ctas .btn-primary:hover { background-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,75,127,.15); }
.hero-ctas .btn-secondary { padding: 1rem 2.5rem; background-color: transparent; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #fff; border-radius: 12px; transition: all .4s ease; display: inline-block; text-align: center; }
.hero-ctas .btn-secondary:hover { background-color: #fff; color: #0b4b7f; transform: translateY(-3px); }

.btn-primary { padding: 1rem 2.5rem; background-color: #830000; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #830000; border-radius: 12px; transition: all .4s ease; box-shadow: 0 8px 20px rgba(131,0,0,.15); display: inline-block; text-align: center; }
.btn-primary:hover { background-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,75,127,.15); }
.btn-secondary { padding: 1rem 2.5rem; background-color: transparent; color: #fff; font-weight: 600; font-size: 1rem; border: 2px solid #fff; border-radius: 12px; transition: all .4s ease; display: inline-block; text-align: center; }
.btn-secondary:hover { background-color: #fff; color: #0b4b7f; transform: translateY(-3px); }