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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to right, rgba(205, 230, 110, 0.8), rgba(160, 230, 210, 0.8));
  min-height: 100vh;
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 1.8rem;
  width: auto;
}

.logo h1 {
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a0e6d2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2d3748;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-dark {
  color: #2d3748;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a5568;
  line-height: 1.6;
}

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

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  color: #2d3748;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(205, 230, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2d3748;
  border: 2px solid #a0e6d2;
}

.btn-secondary:hover {
  background: #a0e6d2;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #2d3748;
  border: 2px solid #cde66e;
}

.btn-outline:hover {
  background: #cde66e;
  color: #2d3748;
}

.mobile-mockup,
.laptop-mockup {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
  padding: 80px 0;
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  color: #2d3748;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.step p {
  color: #4a5568;
}

/* For Owners Section */
.for-owners {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
}

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

.owners-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.owners-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4a5568;
  line-height: 1.6;
}

.owners-features {
  list-style: none;
  margin-bottom: 2rem;
}

.owners-features li {
  padding: 0.5rem 0;
  color: #4a5568;
  font-size: 1.1rem;
}

/* Download Section */
.download {
  padding: 80px 0;
  background: linear-gradient(to right, rgba(205, 230, 110, 0.8), rgba(160, 230, 210, 0.8));
  text-align: center;
}

.download-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.download-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a5568;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-btn img {
  height: 60px;
  transition: transform 0.3s ease;
}

.download-btn:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 40px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #a0e6d2;
}

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

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

.footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a0e6d2;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #cbd5e0;
}

.nav-menu .active {
  color: #a0e6d2;
  font-weight: 600;
}

/* Legal Pages Styles */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: white;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: center;
  font-style: italic;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #a0e6d2;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.company-info {
  background: rgba(160, 230, 210, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.company-info p {
  margin-bottom: 0.5rem;
}

.company-info strong {
  color: #2d3748;
  font-size: 1.1rem;
}

blockquote {
  background: rgba(205, 230, 110, 0.1);
  border-left: 4px solid #cde66e;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

blockquote p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.legal-section a {
  color: #a0e6d2;
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover {
  color: #cde66e;
  text-decoration: underline;
}

/* Support Page Specific Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  background: rgba(160, 230, 210, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(160, 230, 210, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(160, 230, 210, 0.2);
}

.contact-item h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-item a {
  color: #a0e6d2;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: #cde66e;
  text-decoration: underline;
}

.support-note {
  background: rgba(205, 230, 110, 0.1);
  border-left: 4px solid #cde66e;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.support-note p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.support-note strong {
  color: #2d3748;
}

/* About Page Specific Styles */
.company-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail-item {
  background: rgba(160, 230, 210, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #a0e6d2;
}

.detail-item h3 {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail-item p {
  margin: 0;
  color: #4a5568;
  font-size: 1rem;
}

.detail-item a {
  color: #a0e6d2;
  text-decoration: none;
  font-weight: 500;
}

.detail-item a:hover {
  color: #cde66e;
  text-decoration: underline;
}

/* Contact Page Specific Styles */
.contact-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: white;
}

.contact-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(160, 230, 210, 0.1), rgba(205, 230, 110, 0.1));
}

.contact-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-info h1 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #cde66e, #a0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info > p {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #a0e6d2;
}

.contact-item h3 {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-item a {
  color: #a0e6d2;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: #cde66e;
  text-decoration: underline;
}

.contact-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo-img {
  width: 300px;
  height: auto;
  max-width: 100%;
}

/* Action Cards Section */
.action-cards {
  padding: 80px 0;
  background: white;
}

.action-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.action-card {
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.download-card {
  background: linear-gradient(135deg, #a0e6d2, #cde66e);
  color: white;
}

.partner-card {
  background: white;
  border: 2px solid #e2e8f0;
}

.action-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.download-card h2 {
  color: white;
}

.partner-card h2 {
  color: #2d3748;
}

.action-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-card p {
  color: rgba(255, 255, 255, 0.9);
}

.partner-card p {
  color: #4a5568;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn img {
  height: 60px;
  width: auto;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 0 1rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  .company-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .detail-item {
    padding: 1rem;
  }
  
  .contact-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-info h1 {
    font-size: 2rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-logo-img {
    width: 200px;
  }
  
  .action-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .action-card {
    padding: 2rem 1.5rem;
  }
  
  .action-card h2 {
    font-size: 1.5rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
    color: #a0e6d2;
    font-weight: 600;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .owners-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

  .steps-container {
    grid-template-columns: 1fr;
  }
}
