* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

:root {
  --gradient-primary: linear-gradient(90deg, #5de0e6, #004aad);
  --color-cyan: #5de0e6;
  --color-blue: #004aad;
  --color-text: #333;
  --color-text-light: #666;
  --color-white: #fff;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: #f8f9fa;
  overflow-x: hidden;
}

.scrolling-bar {
  width: 100%;
  background: var(--color-white);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.scrolling-bar::before,
.scrolling-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scrolling-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white), transparent);
}

.scrolling-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white), transparent);
}

.scrolling-content {
  display: flex;
  gap: 60px;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.scroll-item {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 30px;
}

.scroll-item.light {
  color: var(--color-cyan);
}

.scroll-item.dark {
  color: var(--color-blue);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

header {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.contact-info {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.contact-item:hover {
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-blue);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
}

.hero {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background-color: #ffffff;
  background-image: url('images/JVega Logo.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 450px;
}

.hero .tagline {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.stat-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-bg {
  fill: none;
  stroke: #e9ecef;
  stroke-width: 8;
}

.stat-fill {
  fill: none;
  stroke: var(--color-blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s ease-in-out;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
}

.stat-label {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-section {
  background: var(--color-white);
  padding: var(--spacing-lg) 0;
}

.carousel-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: carouselScroll 40s linear infinite;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-slide {
  width: 1200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-md);
}

.carousel-slide.reverse {
  flex-direction: row-reverse;
}

.carousel-image {
  flex: 1;
  height: 400px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-content {
  flex: 1;
  padding: var(--spacing-md);
}

.carousel-content h2 {
  font-size: 36px;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
}


@media (max-width: 768px) {
}

.bio-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-xl) 0;
}

.bio-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.bio-image {
  width: 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--color-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-text h2 {
  font-size: 36px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.bio-text h3 {
  font-size: 20px;
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.bio-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.values-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.values-section h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.value-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-white);
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-blue);
}

.value-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.plan-types-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.plan-types-section h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.plan-type-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.plan-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.plan-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.plan-type-card h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-blue);
}

.plan-type-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.why-private-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--color-cyan);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-blue);
  font-weight: 700;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin: 0;
}

.mission-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.mission-section p {
  font-size: 24px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

.business-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.business-section h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-intro {
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.business-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: transform 0.3s;
}

.business-feature:hover {
  transform: translateX(8px);
}

.business-feature .star {
  font-size: 24px;
  flex-shrink: 0;
}

.business-feature p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-xl) 0;
}

.contact-heading {
  font-size: 48px;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.contact-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.contact-btn {
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: 3px solid;
}

.text-btn {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.text-btn:hover {
  background: var(--color-blue);
  color: white;
}

.call-btn {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}

.call-btn:hover {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
}

.appointment-link {
  color: var(--color-blue);
  text-decoration: underline;
  font-size: 18px;
  transition: color 0.3s;
}

.appointment-link:hover {
  color: var(--color-cyan);
}

.states-btn {
  margin-top: var(--spacing-md);
  padding: 16px 32px;
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.states-btn:hover {
  background: var(--color-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-right {
  display: flex;
  justify-content: center;
}

.quote-form {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 24px;
  border: 3px solid var(--color-blue);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.quote-form h3 {
  font-size: 32px;
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.required {
  color: red;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-blue);
}

.form-group input.error {
  border-color: red;
}

.field-warning {
  display: none;
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

.consent-text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--color-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-left {
    order: 1;
  }

  .contact-right {
    order: 2;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
  }
}

footer {
  background: #1a1a1a;
  color: var(--color-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}


.footer-section h3 {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-cyan);
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--color-cyan);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: var(--spacing-lg);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
  text-align: center;
  font-size: 32px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover,
.close:focus {
  color: var(--color-blue);
}

.states-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.state-item {
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.state-item.available {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.state-item.unavailable {
  background-color: #ffebee;
  color: #c62828;
}

.state-item .check {
  color: #2e7d32;
  font-weight: bold;
  font-size: 18px;
}

.state-item .x {
  color: #c62828;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 480px) {
  .states-list {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero .tagline {
    font-size: 18px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .bio-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-image {
    margin: 0 auto;
  }

  .carousel-slide {
    flex-direction: column !important;
    padding: var(--spacing-sm);
  }

  .carousel-image {
    width: 100%;
    height: 250px;
  }

  .carousel-content h2 {
    font-size: 24px;
  }

  .carousel-content p {
    font-size: 16px;
  }

  .carousel-container {
    height: auto;
    min-height: 600px;
  }

  .values-section h2,
  .plan-types-section h2,
  .mission-section h2,
  .business-section h2 {
    font-size: 28px;
  }

  .mission-section p,
  .business-intro {
    font-size: 18px;
  }

  .business-feature p {
    font-size: 16px;
  }

  .hero::before {
    width: 420px;
    height: 420px;
  }

  .hero .container {
    min-height: 350px;
  }

  .hero .tagline {
    font-size: 24px;
  }

  .contact-info {
    width: 100%;
    justify-content: center;
  }
}

.why-matters-section {
  padding: var(--spacing-lg) 0;
  background: #f8f9fa;
}

.why-matters-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.matters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.matter-box {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.matter-box h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.matter-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.faq-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-white);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-sm);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-cyan);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue);
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--spacing-sm) var(--spacing-md);
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin: 0;
}

.facebook-link {
  color: var(--color-blue);
  text-decoration: none;
  margin-left: 8px;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.facebook-link:hover {
  opacity: 0.7;
}

.linkedin-link {
  color: var(--color-blue);
  text-decoration: none;
  margin-left: 8px;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.linkedin-link:hover {
  opacity: 0.7;
}

#notes {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

#notes:focus {
  outline: none;
  border-color: var(--color-blue);
}

@media (max-width: 768px) {
  .matters-grid {
    grid-template-columns: 1fr;
  }

  .why-matters-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }

  .matter-box h3 {
    font-size: 1.3rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 12px 16px;
  }
}
