/* Google Color Palette */
:root {
    --google-blue: #4285F4;
    --google-red: #DB4437;
    --google-yellow: #F4B400;
    --google-green: #0F9D58;
    --google-blue-light: #5A9CF8;
    --google-red-light: #E57373;
    --google-yellow-light: #FFD54F;
    --google-green-light: #4CAF50;
  }
  
  /* About Page */
  .about-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    color: #1a1a1a;
  }
  
  /* Header */
  .main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
   .brand {
    display: flex;
    flex-direction: column;
  }
  
  .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--google-blue);
    margin: 0;
    letter-spacing: 1px;
  }
  
  .brand-tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
  font-weight: 500;
  }
  
  .main-nav {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--google-blue);
    background: rgba(66, 133, 244, 0.1);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--google-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover::after {
    width: 80%;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .admin-button {
    background: var(--google-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .admin-button:hover {
    background: var(--google-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
  }
  
  /* Mobile Navigation */
  .hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .hamburger-line {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hamburger-line.active:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger-line.active:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-line.active:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .mobile-nav.active {
    transform: translateY(0);
  }
  
  /* About Hero Section */
  .about-hero {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 50%, var(--google-yellow) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .about-hero p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  /* Vision Mission Section */
  .vision-mission {
    padding: 5rem 2rem;
    background: white;
  }
  
  .vision-mission .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .vision-card, .mission-card {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
  }
  
  .vision-card > *, .mission-card > * {
    position: relative;
    z-index: 2;
  }
  
  .vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .vision-card h2, .mission-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
  }
  
  .vision-card p, .mission-card p {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* Benefits Section */
  .benefits {
    padding: 5rem 2rem;
    background: #f8fafc;
  }
  
  .benefits .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefits h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 3rem 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  }
  
  .benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
  }
  
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
  }
  
  .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
  }
  
  .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
  }
  
  .benefit-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  /* Modern Team Section */
  .team-section {
    padding: 5rem 2rem;
    background: white;
  }
  
  .team-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  
  .team-section .subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin: 0 0 3rem 0;
    line-height: 1.6;
  }
  
  .team-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .team-slider {
    margin-bottom: 2rem;
  }
  
  .team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin: 0 1rem;
    border: 1px solid #e5e7eb;
    position: relative;
  }
  
  .team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    margin: 0px 5px;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.1);
  }
  
  .team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  }
  
  .team-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: white;
    height: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .team-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    text-align: center;
  }
  
  .team-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
  }
  
  .team-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
  }
  
  /* Carousel Controls */
  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--google-blue);
    color: var(--google-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .prev-btn:hover, .next-btn:hover {
    background: var(--google-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
  }
  
  /* How to Join Section */
  .how-to-join {
    padding: 5rem 2rem;
    background: #f8fafc;
  }
  
  .how-to-join .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-to-join h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 3rem 0;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
  
  .step-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
  }
  
  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
  }
  
  .step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
  }
  
  .step-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  /* Contact Section */
  .contact-section {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    padding: 5rem 2rem;
    color: white;
    text-align: center;
  }

  .contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
  }

  .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }

  .contact-actions {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--google-green);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(15, 157, 88, 0.3);
  }

  .contact-wa-btn:hover {
    background: var(--google-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 157, 88, 0.4);
    color: white;
  }

  .contact-wa-btn i {
    font-size: 1.5rem;
  }

  .contact-section .contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-section .contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    opacity: 1;
  }

  .contact-section .contact-info strong {
    color: var(--google-yellow);
  }

  /* Contact Info Section */
  .contact-info {
    padding: 5rem 2rem;
    background: white;
  }
  
  .contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 3rem 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  }
  
  .contact-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
  }
  
  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
  }
  
  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  
  .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
  }
  
  .contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
  }
  
  .contact-card p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    color: white;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }
  
  .cta-section p {
    font-size: 1.3rem;
    margin: 0 0 2.5rem 0;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
  }
  
  .cta-button.primary {
    background: white;
    color: var(--google-blue);
  }
  
  .cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .cta-button.secondary:hover {
    background: white;
    color: var(--google-blue);
    transform: translateY(-3px);
  }
  
  /* Footer */
  .main-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-brand h3 {
    color: var(--google-blue);
    margin: 0 0 0.5rem 0;
  }
  
  .footer-brand p {
    color: #999;
    margin: 0;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--google-blue);
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
  }
  
  .powered-by {
    margin-top: 0.5rem;
    color: var(--google-blue);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header-content {
      padding: 0 1rem;
    }
    
    .header-left {
      gap: 1rem;
    }
    
    .main-nav {
      display: none;
    }
    
    .hamburger-menu {
      display: flex;
    }
    
    .about-hero h1 {
      font-size: 2.5rem;
    }
    
    .about-hero p {
      font-size: 1.1rem;
    }
    
    .vision-mission .container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .vision-card, .mission-card {
      padding: 2rem;
    }
    
    .vision-card h2, .mission-card h2 {
      font-size: 2rem;
    }
    
    .benefits,
    .team-section,
    .how-to-join,
    .contact-info,
    .contact-section,
    .cta-section {
      padding: 3rem 1rem;
    }
    
    .benefits-grid,
    .steps-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .contact-wa-btn {
      padding: 1.2rem 2rem;
      font-size: 1.1rem;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-wa-btn i {
      font-size: 1.8rem;
    }
    
    .team-card {
      margin: 0 0.5rem;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .footer-links {
      justify-content: center;
    }
  } 