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

:root {
  --primary-color: #00D563;
  --primary-dark: #00B350;
  --primary-light: #E6FFF1;
  --secondary-color: #1A3A52;
  --text-dark: #0A1F35;
  --text-gray: #5A6C7D;
  --white: #FFFFFF;
  --light-gray: #F5F8FA;
  --border-color: #E2E8F0;
  --error-color: #EF4444;
  --success-color: #10B981;
}

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

/* Loading mechanism styles */
.dynamic-content {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.dynamic-content.loaded {
    opacity: 1;
}

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

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.info-banner {
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
}

.info-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.info-item:hover {
  opacity: 0.8;
}

.info-item svg {
  flex-shrink: 0;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -1px;
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 213, 99, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(10, 31, 53, 0.95) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://storage.googleapis.com/campaign-website-images/10032/pexels-photo-7659564%20(1).webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  font-style: italic;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 213, 99, 0.4);
}

.services-section {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  border: 2px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 213, 99, 0.15);
  border-color: var(--primary-color);
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 36px;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-learn-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-learn-more:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.about-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-tagline {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-style: italic;
  display: block;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.cta-banner {
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.features-section {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 213, 99, 0.15);
  border-color: var(--primary-color);
  background: var(--white);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.feature-icon svg {
  color: var(--primary-color);
  width: 32px;
  height: 32px;
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 213, 99, 0.12);
}

.quote-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid var(--border-color);
  padding-top: 20px;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-gray);
  font-size: 14px;
}

.stats-section {
  padding: 80px 0;
  background: var(--secondary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-section {
  padding: 100px 0;
  background: var(--primary-color);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 36px;
  opacity: 0.95;
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-style: italic;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-links-section {
  display: contents;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
}

.footer-column a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  transition: all 0.3s;
  padding: 8px 0;
}

.contact-list li:hover {
  color: rgba(255, 255, 255, 0.95);
}

.contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-color);
}

.contact-list a:hover {
  color: var(--primary-color);
  transform: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.page-hero {
  background: var(--secondary-color);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.content-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 30px 0 16px;
}

.content-wrapper p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper a {
  color: var(--primary-color);
  text-decoration: none;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

.contact-form-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-form-header p {
  color: var(--text-gray);
  font-size: 16px;
}

.contact-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2d42 100%);
  padding: 32px 28px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 213, 99, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.contact-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-banner-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.contact-banner-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 213, 99, 0.3));
}

.contact-banner-item div {
  flex: 1;
  min-width: 0;
}

.contact-banner-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-banner-item span {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.contact-banner-item a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.contact-banner-item a:hover {
  color: var(--primary-color);
  transform: translateX(2px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 213, 99, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error-color);
}

.error-message {
  display: none;
  color: var(--error-color);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}

.form-group.error .error-message {
  display: block;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A6C7D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.checkbox-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

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

.checkbox-text a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  padding: 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 213, 99, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loader {
  display: block;
}

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: bottom 0.3s;
  max-width: 90%;
  text-align: center;
  font-weight: 600;
}

.toast.show {
  bottom: 30px;
}

.toast.success {
  background: var(--success-color);
}

.toast.error {
  background: var(--error-color);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.benefits-section {
  padding: 100px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.benefit-item:hover {
  background: var(--white);
  border-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 213, 99, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  color: var(--white);
  width: 24px;
  height: 24px;
}

.benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

.page-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 60px;
}

.page-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.page-service-item:nth-child(even) .page-service-content {
  order: 2;
}

.page-service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-service-content h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-service-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-service-features {
  list-style: none;
  margin-top: 24px;
}

.page-service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-gray);
}

.page-service-features li svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.process-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 213, 99, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.faq-question svg {
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.plan-tiers-section {
  padding: 100px 0;
  background: var(--white);
}

.plan-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid var(--border-color);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 213, 99, 0.15);
  border-color: var(--primary-color);
}

.plan-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 213, 99, 0.1);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.plan-card.bronze .plan-icon {
  background: #fef3e2;
}

.plan-card.silver .plan-icon {
  background: #f0f0f5;
}

.plan-card.gold .plan-icon {
  background: #fff8e1;
}

.plan-card.platinum .plan-icon {
  background: #e8f5e9;
}

.plan-icon svg {
  color: var(--primary-color);
  width: 32px;
  height: 32px;
}

.plan-card.bronze .plan-icon svg {
  color: #cd7f32;
}

.plan-card.silver .plan-icon svg {
  color: #c0c0c0;
}

.plan-card.gold .plan-icon svg {
  color: #ffd700;
}

.plan-card.platinum .plan-icon svg {
  color: #4caf50;
}

.plan-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-coverage {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-gray);
  font-size: 14px;
}

.plan-features svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.calculator-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.calculator-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.calculator-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.calculator-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 30px 0;
}

.calculator-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.calculator-steps li::before {
  content: counter(step-counter);
  background: var(--primary-color);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.calculator-steps li span {
  color: var(--text-gray);
  line-height: 1.8;
  padding-top: 4px;
}

.calculator-example {
  background: var(--primary-light);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid var(--primary-color);
}

.calculator-example strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.calculator-example p {
  margin-bottom: 8px;
  font-size: 14px;
}

.calculator-sidebar .consideration-box {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.consideration-box:hover {
  box-shadow: 0 6px 20px rgba(0, 213, 99, 0.1);
  transform: translateY(-4px);
}

.consideration-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.consideration-box svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.consideration-box p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.coverage-details-section {
  padding: 100px 0;
  background: var(--white);
}

.why-matters-section {
  padding: 100px 0;
  background: var(--light-gray);
}

@media (max-width: 968px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-banner {
    padding: 28px 20px;
  }

  .contact-banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-banner-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-service-item {
    grid-template-columns: 1fr;
  }

  .page-service-item:nth-child(even) .page-service-content {
    order: 1;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .calculator-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .info-banner-content {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
