* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  :root {
    --bg-primary: #f5f5f7;
    --bg-secondary: #1a1a1a;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --accent-primary: #0066cc; /* Changed to blue for finance */
    --accent-secondary: #66b3ff; /* Lighter blue */
    --success: #00b300; /* Adjusted green for money/profit */
    --danger: #ff453a;
    --feature-card-bg: #003366; /* Dark blue for feature cards */
    --feature-card-hover: #004080; /* Slightly lighter blue for hover */
    --get-started-bg: #0080ff; /* Brighter blue for Get Started button */
  }
  
  body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    /* background-color: #ffffff; */
    line-height: 1.5;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #002b4d; /* Dark navy */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .logo {
    font-size: 50px;
    font-weight: 600;
    margin-left: 100px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
  }
  
  .nav-links {
    display: flex;
    margin-right: 30px;
    gap: 24px;
  }
  
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--text-primary);
  }
  
  .hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    color: white;
    display: flex;
    background-color: white; /* Navy blue */
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  
  h2 {
    font-size: 42px;
    font-weight: 700;
    color: #002b4d; /* Dark navy for headings */
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  
  .subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    font-weight: 400;
  }
  
  /* Updated button styles */
  .btn {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
    border-radius: 8px;
    padding: 12px 24px;
  }
  
  .btn-primary {
    background-color: var(--get-started-bg);
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0059b3; /* Darker blue on hover */
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 22px;
  }
  
  .btn-secondary:hover {
    background-color: white;
    color: #003366; /* Navy blue */
    transform: translateY(-2px);
  }
  
  .dashboard-preview {
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
  }
  
  .dashboard-preview img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
  }
  
  .dashboard-preview:hover img {
    transform: translateY(-10px);
  }
  
  .features {
    padding: 50px 20px 50px 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .features-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0 60px;
  }
  
  .feature-card {
    /* background-color: white;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; */

    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px; /* Added fixed height */
    display: flex;
    flex-direction: column;
    
  }














  
  /* .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: white !important;
  } */
  .feature-card:hover {
    transform: translateY(-5px) scale(1.05); /* Added scale(1.05) to increase size by 5% */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: white !important;
  }
  
  .feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--accent-primary);
  }
  
  .feature-title {
    font-size: 25px;
    font-weight: 600;
    color: #f4f9f9; /* Navy blue */
    margin-bottom: 12px;
  }
  
  .feature-desc {
    font-weight: 400;
    color: #f9faf8; /* Navy blue */
    /* color: var(--text-secondary); */
    font-size: 20px;
  }
  
  /* .cta {
    text-align: center;
    padding: 100px 40px 100px 40px;
    color: #003366; 
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.15), rgba(0, 64, 128, 0.15));
    border-radius: 24px;
    margin: 40px 40px;
  } */
  
  .footer {
    padding: 80px 40px 40px 80px;
    background-color: #002b4d; /* Dark navy */
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  .footer-column p {
    color: white;
  }
  
  .footer-column a {
    color: white;             /* Sets the link color to white */
    text-decoration: none;    /* Removes the underline */
    transition: 0.3s ease; 
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--accent-primary);
    transform: translateY(-3px);
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 42px;
    }
    
    h2 {
      font-size: 32px;
    }
    
    .subtitle {
      font-size: 18px;
      color: #ffffff !important; 
    }
    .sub {
      font-size: 18px;
      color: #ffffff !important; 
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      padding: 0 60px;
    }
    
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  .footer-bottom  {
    color: white;
  }

  .footer-bottom a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 480px) {
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .nav-links {
      display: none;
    }
  }
  
  /* Apple-style animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .delay-1 {
    animation-delay: 0.1s;
  }
  
  .delay-2 {
    animation-delay: 0.2s;
  }
  
  .delay-3 {
    animation-delay: 0.3s;
  }

body .reminders-list,
body .reminders-list *,
body .reminders-list p,
body .reminders-list div,
body .reminders-list span {
    color: black !important;
    -webkit-text-fill-color: black !important;
    opacity: 1 !important;
}
