/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Color System */
:root {
  --primary-bg: #ffffff;
  --secondary-bg: #363636;
  --accent-color: #24C68B;
  --light-grey: #f5f5f5;
  --dark-section: #2a2a2a;
  --text-primary: #333333;
  --text-secondary: #666666;
  --border-color: #e9ecef;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #24C68B;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: #24C68B;
}

.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #24C68B;
  animation: underline 0.3s ease;
}

@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #24C68B;
  color: white;
}

.btn-primary:hover {
  background-color: #1DA876;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-outline:hover {
  background-color: #333;
  color: white;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 10rem 0;
}

/* Hero Section */
.hero {
  padding-top: 14rem;
  padding-bottom: 10rem;
  background-color: var(--primary-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--primary-bg) 100%);
  z-index: 0;
  opacity: 0.7;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* App Intro Section */
.app-intro {
  background-color: var(--light-grey);
  padding: 10rem 0;
  position: relative;
}

.app-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--light-grey) 100%);
}

.app-intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-intro-content {
  animation: slideInLeft 1s ease-in-out;
}

.app-intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.app-intro-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.app-intro-image {
  background-color: var(--primary-bg);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  animation: slideInRight 1s ease-in-out;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease-in-out;
}

.app-intro-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-intro-image h3 {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.2rem;
}

/* Partners Section */
.partners {
  padding: 8rem 0;
  background-color: #ffffff;
}

.partners-title {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background-color: #e9ecef;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

/* Products Section */
.products {
  padding: 10rem 0;
  background-color: var(--primary-bg);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, var(--light-grey) 0%, var(--primary-bg) 100%);
}

.products-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.products-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background-color: var(--primary-bg);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.6rem;
}

.product-card p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.product-card .compliance-note {
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card .compliance-note::before {
  content: '✓';
  font-size: 1.1rem;
  font-weight: bold;
}

/* Services Section */
.services {
  padding: 10rem 0;
  background-color: var(--light-grey);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--light-grey) 100%);
}

.services-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.services-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--primary-bg);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-image {
  width: 100px;
  height: 100px;
  background-color: var(--light-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.service-card:hover .service-image {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.service-card .service-image h4 {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

.service-card:hover .service-image h4 {
  color: var(--primary-bg);
}

.service-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.6rem;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Philosophy Section */
.philosophy {
  padding: 10rem 0;
  background-color: var(--dark-section);
  color: var(--primary-bg);
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, var(--light-grey) 0%, var(--dark-section) 100%);
}

.philosophy-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.philosophy-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-bg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.philosophy-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.philosophy-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.philosophy-card h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.6rem;
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.1rem;
}

/* About Page */
.about-hero {
  padding-top: 14rem;
  padding-bottom: 6rem;
  background-color: var(--light-grey);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--light-grey) 100%);
  z-index: 0;
  opacity: 0.7;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.about-hero p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  padding: 10rem 0;
  position: relative;
}

.about-section:nth-child(even) {
  background-color: var(--light-grey);
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--accent-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 5rem;
  width: 50%;
  animation: fadeIn 1s ease-in-out;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 4rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 4rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(50%);
  box-shadow: 0 0 0 8px rgba(36, 198, 139, 0.1);
  transition: all 0.3s ease-in-out;
}

.timeline-item:hover::before {
  transform: translateY(50%) scale(1.2);
  box-shadow: 0 0 0 12px rgba(36, 198, 139, 0.15);
}

.timeline-item:nth-child(odd)::before {
  right: -12px;
}

.timeline-item:nth-child(even)::before {
  left: -12px;
}

.timeline-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.timeline-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 10rem 0;
  background-color: var(--primary-bg);
}

.team-content {
  max-width: 800px;
  margin: 0 auto;
}

.team-content h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.team-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.team-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background-color: var(--light-grey);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.team-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image h3 {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}

.team-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Services Page */
.services-hero {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  text-align: center;
}

.service-details {
  padding: 6rem 0;
}

.service-card {
  background-color: var(--primary-bg);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  display: block;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.service-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto 2rem;
  transition: width 0.3s ease;
}

.service-card:hover .service-divider {
  width: 80px;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
}

.service-section {
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.service-card:hover .service-section {
  padding-left: 1.5rem;
  border-left-width: 4px;
}

.service-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.service-section h3::before {
  content: '▶';
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.service-list li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.service-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.process-flow {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background-color: #e9ecef;
  transform: translateY(-50%);
}

.process-step .icon {
  width: 80px;
  height: 80px;
  background-color: #24C68B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
  padding: 6rem 0;
  background-color: #ffffff;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #24C68B;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* News Page */
.news-hero {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  text-align: center;
}

.news-section {
  padding: 6rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-card .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.news-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.news-card p {
  color: #666;
}

/* Story Page */
.story-hero {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  text-align: center;
}

.story-section {
  padding: 6rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.value-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* Footer */
.footer {
  background-color: var(--secondary-bg);
  color: white;
  padding: 6rem 0 3rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, var(--dark-section) 0%, var(--secondary-bg) 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.footer-column {
  position: relative;
}

.footer-column:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2rem;
  width: 1px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-bg);
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease-in-out;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  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);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .navbar-menu.active {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-intro-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 10px !important;
  }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 6rem 0;
  }

  .hero {
    padding-top: 10rem;
  }

  .about-hero,
  .services-hero,
  .news-hero,
  .story-hero {
    padding-top: 10rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .navbar-container {
    padding: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 8rem;
  }

  .about-hero,
  .services-hero,
  .news-hero,
  .story-hero {
    padding-top: 8rem;
  }
}