body {
  font-family: 'Source Sans Pro';
  text-align: center;
  background-color: #fff;
}

p {
  color: #808080;
}

/* Headings */
.big-heading {
  font-weight: 700;
  font-size: 3.2rem;
}

.section-heading {
  font-size: 3rem;
  line-height: 1.5;
}

.big-text-size {
  font-weight: 700;
  font-size: 3.2rem;
}

.title-text-size {
  font-weight: 700;
  font-size: 1.8rem;
  color: #000;
}

#cta .title-text-size {
  color: #fff;
}

.message-text-size {
  font-weight: 400;
  font-size: 1.3rem;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
}

.small-text {
  font-size: 1rem;
  font-weight: 400;
}

/* Containers */
.container-fluid {
  padding: 5% 10%;
}

/* Sections */
.colored-section {
  background: rgb(255, 127, 80);
  background: linear-gradient(135deg, rgba(255, 127, 80, 1) 0%, rgba(255, 165, 0, 1) 50%, rgba(255, 69, 0, 1) 100%);
  color: #fff;
}

.white-section {
  background-color: #fff;
}

/* Navigation Bar */
.navbar {
  padding: 0 0 4.5rem;
}

.navbar-brand img {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px;
  backdrop-filter: blur(10px);
}

.nav-item {
  padding: 0 18px;
}

/* Title Section */
#title {
  text-align: left;
}

#title .container-fluid {
  padding: 3% 10% 7%;
}

/* Coming Soon Notice */
.coming-soon-notice {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.coming-soon-notice h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.coming-soon-notice p {
  color: #fff;
  margin-bottom: 0;
}

/* Title Image */
.title-image {
  width: 60%;
  max-width: 300px;
  margin: 2rem auto;
  display: block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.app-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Features Section */
.feature-box {
  padding: 2rem 15px;
}

.icon-container {
  margin-bottom: 1rem;
}

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

/* Call to Action Section */
.coming-soon-container {
  margin-top: 3rem;
}

.notification-signup {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.notification-signup h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.notification-signup p {
  color: #fff;
  margin-bottom: 0;
}

/* Footer */
#footer p {
  color: #808080;
  margin-bottom: 0.5rem;
}

#footer a {
  color: #ff6b35;
  text-decoration: none;
}

#footer a:hover {
  color: #ff4500;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1028px) {
  #title {
    text-align: center;
  }
  
  .title-image {
    width: 50%;
    margin-top: 3rem;
    padding: 1.5rem;
  }
  
  .navbar-brand img {
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .big-heading {
    font-size: 2.5rem;
  }
  
  .lead-text {
    font-size: 1.2rem;
  }
  
  .feature-box {
    padding: 1.5rem 15px;
  }
  
  .container-fluid {
    padding: 5% 8%;
  }
  
  .title-image {
    width: 70%;
    max-width: 250px;
    padding: 1.2rem;
    margin: 2rem auto 1rem;
  }
  
  .navbar-brand img {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .big-heading {
    font-size: 2rem;
  }
  
  .title-text-size {
    font-size: 1.5rem;
  }
  
  .message-text-size {
    font-size: 1.1rem;
  }
  
  .title-image {
    width: 80%;
    max-width: 200px;
    padding: 1rem;
  }
  
  .navbar-brand img {
    width: 30px;
    height: 30px;
    padding: 4px;
  }
  
  .coming-soon-notice {
    padding: 1rem;
  }
  
  .notification-signup {
    padding: 1.5rem;
  }
  
  .container-fluid {
    padding: 5% 6%;
  }
}

/* Privacy Policy Specific Styles */
.secondary-title {
  text-align: center;
}

.secondary-title .container-fluid {
  padding: 3% 10%;
}

.secondary-title .navbar {
  padding: 0;
}

#privacy-content {
  text-align: left;
}

#privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

#privacy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #444;
}

#privacy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

#privacy-content li {
  margin-bottom: 0.5rem;
  color: #666;
}

#privacy-content p {
  color: #666;
}

#privacy-content strong {
  color: #333;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .white-section {
    background-color: #222222;
  }

  .title-text-size {
    color: #fff;
  }
  
  body {
    background-color: #222222;
  }

  p {
    color: #adadad;
  }
  
  #footer p {
    color: #adadad;
  }
  
  /* Enhanced icon visibility in dark mode */
  .title-image {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-brand img {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Privacy Policy Dark Mode */
  #privacy-content h2 {
    color: #fff;
  }
  
  #privacy-content h3 {
    color: #eee;
  }
  
  #privacy-content p {
    color: #ccc;
  }
  
  #privacy-content li {
    color: #ccc;
  }
  
  #privacy-content strong {
    color: #fff;
  }
}