body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background: #f7f7f7;
  overflow-x: hidden;
}

/* Navbar */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* Logo image styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
  font-weight: bold;
  color: #9400ff;
  font-size: 25px;
}

.logo-img {
  width: 40px;         /* adjust size as needed */
  height: 40px;
  border-radius: 50%;  /* makes it fully round */
  object-fit: cover;   /* ensures the image scales nicely */
}


/* Hamburger */

.hamburger{
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.hamburger span{
  height:3px;
  width:100%;
  background:#333;
  border-radius:3px;
  transition:0.3s;
}


/* Hamburger animation */

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}


/* Menu */

nav{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:white;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  max-height:0;
  transition:max-height 0.4s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

nav a{
  padding:15px;
  text-decoration:none;
  color:#333;
  border-bottom:1px solid #eee;
}

nav a:hover{
  background:#f5f5f5;
}

/* active page */

nav a.active{
  color:#9400ff;
  font-weight:bold;
}


/* open menu */

nav.open{
  max-height:300px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: white;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.subtitle {
  font-size: 19px;
  color: #9400ff;
}

.hero-image img {
  width: 340px;
  border-radius: 5%;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #9400ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.features {
  padding: 40px 40px;
}

.features.drivers {
  padding-top: 0;
}

.features h1 {
  text-align: center;
  margin-bottom: 33px;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Section heading icons */
.section-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.feature-card img {
  width: 96px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.cta {
  text-align: center;
  padding: 15px 20px;
  background: #9400ff;
  color: white;
}

.cta-button.large {
  background: white;
  color: #9400ff;
}

footer a {
  color: #b780ff;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  gap:14px; /* space between icon and text */
  padding:12px 24px;
  background:#9400ff;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
  transition:0.2s;
}

.cta-button:hover{
  transform:scale(1.05);
}

.play-icon{
  width:20px;   /* icon size */
  height:20px;
}

/* CTA section */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #9400ff;
  color: white;
}

/* header with icon */
.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-icon {
  width: 32px;
  height: 32px;
}

/* Google Play badge in CTA */
.google-play-badge {
  margin-top: 20px;
  height: 60px;
  transition: transform 0.2s;
}

.google-play-badge:hover {
  transform: scale(1.05);
}

/* iOS tip */
.ios-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 18px;
  color: #f0f0f0;
  opacity: 0.9;
}

.ios-icon {
  width: 30px;
  height: 30px;
}

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 20px 40px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-left a, .footer-right a {
  color: white;
  text-decoration: none;
}

.footer-left a:hover, .footer-right a:hover {
  opacity: 0.8;
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.footer-icon1 {
  width: 20px;
  height: 20px;
}

/* Bottom copyright */
.footer-bottom {
  margin-top: 15px;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
}

/* Mobile responsiveness */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
  }

  .hero-text {
    max-width: 100%;
  }

}

.policy-container{
 max-width: 900px;        /* limits width for readability */
  margin: 0 auto;           /* center horizontally */
  padding: 30px 20px;       /* spacing from top/bottom and sides */
  background: white;        /* page background */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  color: #333;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.policy-container h1{
  font-size:36px;
  margin-bottom:10px;
}

.policy-container h2{
  margin-top:40px;
  font-size:24px;
  color:#333;
}

.policy-container h3{
  margin-top:20px;
  font-size:18px;
}

.policy-container p{
  margin-top:10px;
}

.policy-container ul{
  margin-top:10px;
  padding-left:20px;
}

.policy-meta{
  margin-bottom:40px;
  color:#666;
}


.terms {
  max-width: 900px;        /* limits width for readability */
  margin: 0 auto;           /* center horizontally */
  padding: 30px 20px;       /* spacing from top/bottom and sides */
  background: white;        /* page background */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  color: #333;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.terms-header h1 {
  font-size: 36px;
  text-align: center;
  color: black;
  margin-bottom: 10px;
}

.terms-header p {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.terms-content h2 {
  font-size: 22px;
  color: black;
  margin-top: 30px;
  margin-bottom: 15px;
}

.terms-content p {
  margin-bottom: 15px;
  font-size: 16px;
}

.terms-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.terms-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.terms-content a {
  text-decoration: none;
  font-weight: bold;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .terms {
    padding: 40px 15px;
  }

  .terms-header h1 {
    font-size: 28px;
  }

  .terms-content h2 {
    font-size: 20px;
  }
}