:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
  --gradient-about: linear-gradient(135deg, #7c3aed, #a855f7);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.menu-checkbox {
  display: none;
}

.menu-checkbox:checked + .menu-item .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.menu-checkbox:checked ~ .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 0.5rem;
  overflow-y: auto;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.menu-item a:hover {
    color: var(--accent-orange);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles (same as main.css) */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

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

.brand-logo img {
  height: 50px;
  width: auto;
}

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}


.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

/* About Hero Section */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker-navy) 0%, #1a1f36 50%, var(--deep-navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  animation: floatAbout 20s ease-in-out infinite;
  pointer-events: none;
}

.float-element:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.float-element:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

.float-element:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 8s;
}

.float-element:nth-child(4) {
  bottom: 30%;
  right: 20%;
  animation-delay: 12s;
}

.float-element:nth-child(5) {
  bottom: 20%;
  left: 60%;
  animation-delay: 16s;
}

@keyframes floatAbout {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(15px) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-about);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-highlight {
  display: block;
  background: var(--gradient-about);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.2rem;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-top: 0.5rem;
}

.hero-actions {
  margin-top: 2.5rem;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-about);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.btn-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.about-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-showcase img {
  max-width: 500px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
  border-radius: 20px;
}

/* Our Journey Section */
.our-journey {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-about);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-about);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-about);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--darker-navy);
}

.marker-year {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.timeline-content p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* Our Mission Section */
.our-mission {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card.primary {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: scale(1.02);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mission-card.primary:hover {
  transform: scale(1.02) translateY(-8px);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Our Team Section */
.our-team {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.team-description h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.team-description p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.team-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  min-width: 100px;
}

.team-stat .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.team-stat .stat-label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.team-departments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.department-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.department-card:hover {
  transform: translateY(-3px);
}

.dept-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.department-card h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.department-card p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Community Impact Section */
.community-impact {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.impact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.impact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.impact-intro h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.impact-intro p {
  color: var(--muted-text);
  font-size: 1.1rem;
  line-height: 1.7;
}

.impact-initiatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.initiative-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.initiative-card:hover {
  transform: translateY(-5px);
  border-color: var(--success-green);
}

.initiative-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.initiative-card h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.initiative-card p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Technology & Innovation Section */
.technology-innovation {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tech-content h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.tech-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--success-green);
  font-weight: 500;
}

.feature-check {
  color: var(--success-green);
  font-weight: 700;
}

.tech-innovations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.innovation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.innovation-card:hover {
  transform: translateY(-3px);
}

.innovation-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.innovation-card h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.innovation-card p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Join Us Section */
.join-us-section {
  padding: 6rem 0;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.join-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.join-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.join-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.join-content p {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  color: var(--light-text);
  font-weight: 500;
}

.benefit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.join-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.join-btn.primary {
  background: var(--gradient-about);
  color: white;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.join-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.join-btn.secondary {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
}

.join-btn.secondary:hover {
  background: var(--light-text);
  color: var(--deep-navy);
}

/* Footer (same as main.css) */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-text);
}

.legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
    overflow-y: auto;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .title-highlight {
    font-size: 2.5rem;
  }

  .company-stats {
    justify-content: center;
  }

  .journey-timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height:60px;
  }

.timeline-marker {
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

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

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

  .team-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-departments {
    grid-template-columns: 1fr;
  }

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

  .tech-innovations {
    grid-template-columns: 1fr;
  }

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

  .join-actions {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
.button {
        padding: 0.55rem 0.55rem;
        font-size: 0.8rem;
    }
  .about-hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .title-highlight {
    font-size: 2rem;
  }

  .company-stats {
    gap: 1rem;
  }

  .stat-card {
    min-width: 100px;
    padding: 1rem;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
    width: 40px;
    height: 40px;
  }

  .marker-year {
    font-size: 0.8rem;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 1.5rem;
  }

  .mission-card,
  .feature-card,
  .initiative-card,
  .innovation-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .join-content h2 {
    font-size: 2.2rem;
  }

  .join-btn {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .payment-icons img {
    max-width: 35px;
  }
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 320px) {
  .header-layout {
    min-height: 130px;
    padding: 1.2rem 0;
  }

  .main-header {
    min-height: 130px;
  }

  .action-buttons .button {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-card:hover,
.feature-card:hover,
.initiative-card:hover,
.innovation-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.button:focus,
.menu-item:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.success {
  border-color: var(--success-green) !important;
  background: rgba(5, 150, 105, 0.1) !important;
}
