body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .hero {
    position: relative;
    background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    background-color: #00b894;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #019474;
  }
  
  .logo {
    width: 200px;
    margin-bottom: 1rem;
  }

  .features {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .features .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .features h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .features .subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 20px;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card img {
    width: 50px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
  }
  
  .center {
    text-align: center;
  }
  
  .cta-button.dark {
    background-color: #2c3e50;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .cta-button.dark:hover {
    background-color: #1a252f;
  }
  
  /* Footer Styles */
.footer {
  background-color: white;
  color: #32505A;
  padding-top: 40px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 20px;
}

.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}
.footer-brand p {
  max-width: 300px;
  line-height: 1.5;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}
.footer-links li, .footer-contact li {
  margin-bottom: 8px;
}
.footer-links a, .footer-contact a {
  text-decoration: none;
  color: #32505A;
}
.footer-links a:hover, .footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: rgba(0,0,0,0.05);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
}
