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

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     min-height: 100vh;
     position: relative;
     overflow-x: hidden;
     line-height: 1.6;
 }

 /* Hearts Background Animation */
 .hearts-container {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
 }

 .heart {
     position: absolute;
     color: rgba(255, 255, 255, 0.08);
     font-size: 24px;
     animation: float 10s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
         opacity: 0.05;
     }

     50% {
         transform: translateY(-30px) rotate(15deg);
         opacity: 0.15;
     }
 }

 /* Header Styling */
 header {
     position: relative;
     z-index: 100;
     padding: 1rem 0;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 2rem;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(15px);
     border-radius: 20px;
     margin: 1rem 2rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     animation: slideDown 0.8s ease-out;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .logo {
     font-size: 2rem;
     font-weight: bold;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

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

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     padding: 0.5rem 1rem;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .nav-links a:hover,
 .nav-links a.active {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     transform: translateY(-2px);
 }

 /* Main Content */
 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem;
     position: relative;
     z-index: 10;
 }

 /* Hero Section */
 .hero-section {
     text-align: center;
     margin-bottom: 4rem;
     animation: fadeInUp 1s ease-out;
 }

 .hero-section h1 {
     font-size: 3.5rem;
     color: white;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     background: linear-gradient(135deg, #fff 0%, #f0f0ff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-tagline {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.9);
     max-width: 600px;
     margin: 0 auto 2rem;
     font-style: italic;
 }

 /* Content Sections */
 .content-section {
     background: rgba(255, 255, 255, 0.95);
     margin: 3rem 0;
     padding: 3rem;
     border-radius: 25px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     animation: fadeInUp 0.8s ease-out;
     position: relative;
     overflow: hidden;
 }

 .content-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .content-section h2 {
     font-size: 2.2rem;
     color: #2d3748;
     margin-bottom: 1.5rem;
     position: relative;
     display: inline-block;
 }

 .content-section h2::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 50px;
     height: 3px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 2px;
 }

 .content-section p {
     font-size: 1.1rem;
     color: #4a5568;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 /* Special styling for different sections */
 .mission-section {
     animation-delay: 0.2s;
 }

 .founder-section {
     animation-delay: 0.4s;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 255, 0.95) 100%);
 }

 .ai-partner-section {
     animation-delay: 0.6s;
 }

 .vision-section {
     animation-delay: 0.8s;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 250, 0.95) 100%);
 }

 /* Personal touch elements */
 .personal-highlight {
     background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
     padding: 1.5rem;
     border-radius: 15px;
     margin: 1.5rem 0;
     border-left: 4px solid #ff8a65;
 }

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

 .stat-card {
     text-align: center;
     padding: 2rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
     transition: transform 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-10px);
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: bold;
     display: block;
 }

 .stat-label {
     font-size: 1rem;
     opacity: 0.9;
     margin-top: 0.5rem;
 }

 /* Quote styling */
 .inspirational-quote {
     text-align: center;
     font-size: 1.4rem;
     font-style: italic;
     color: #667eea;
     margin: 3rem 0;
     padding: 2rem;
     background: rgba(102, 126, 234, 0.1);
     border-radius: 20px;
     border: 2px dashed #667eea;
     position: relative;
 }

 .inspirational-quote::before {
     content: '"';
     font-size: 4rem;
     position: absolute;
     top: -10px;
     left: 20px;
     color: #667eea;
     opacity: 0.3;
 }

 /* Journey Timeline */
 .journey-timeline {
     margin: 2rem 0;
 }

 .timeline-item {
     display: flex;
     align-items: center;
     margin: 1.5rem 0;
     padding: 1rem;
     background: rgba(102, 126, 234, 0.05);
     border-radius: 15px;
     border-left: 4px solid #667eea;
 }

 .timeline-emoji {
     font-size: 2rem;
     margin-right: 1rem;
 }

 .timeline-content {
     flex: 1;
 }

 .timeline-title {
     font-weight: 600;
     color: #2d3748;
     margin-bottom: 0.5rem;
 }

 /* Footer */
 .footer {
     text-align: center;
     padding: 3rem 2rem;
     background: rgba(0, 0, 0, 0.2);
     color: white;
     margin-top: 4rem;
     position: relative;
     z-index: 10;
 }

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

 .footer a:hover {
     color: #00f2fe;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-in-up {
     animation: fadeInUp 0.8s ease-out;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .navbar {
         flex-direction: column;
         gap: 1rem;
         margin: 1rem;
         padding: 1.5rem;
     }

     .nav-links {
         gap: 1rem;
     }

     .hero-section h1 {
         font-size: 2.5rem;
     }

     .content-section {
         margin: 2rem 0;
         padding: 2rem;
     }

     .content-section h2 {
         font-size: 1.8rem;
     }

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

 /* Scroll animations */
 .scroll-reveal {
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.6s ease;
 }

 .scroll-reveal.revealed {
     opacity: 1;
     transform: translateY(0);
 }