/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .brand-link {
    font-weight: bold;
    font-size: 1.25rem;
    color: #059669;
    text-decoration: none;
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    background: none;
    border: none;
    color: rgba(26, 26, 26, 0.6);
    cursor: pointer;
    transition: color 0.2s;
    font-size: 0.875rem;
  }
  
  .nav-link:hover {
    color: rgba(26, 26, 26, 0.8);
  }
  
  /* Buttons */
  .btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    background-color: #059669;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #047857;
  }
  
  .btn-outline {
    background-color: transparent;
    color: #059669;
    border: 1px solid #059669;
  }
  
  .btn-outline:hover {
    background-color: #059669;
    color: white;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom, #ffffff, rgba(243, 244, 246, 0.2));
    overflow: hidden;
  }
  
  .hero-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-image {
    margin-top: 4rem;
  }
  
  .image-container {
    background: rgba(243, 244, 246, 0.5);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 0;
    background-color: #f9fafb;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  
  .about-text h3:first-child {
    margin-top: 0;
  }
  
  .about-text p {
    color: #6b7280;
    line-height: 1.8;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* History Section */
  .history-section {
    padding: 5rem 0;
  }
  
  .timeline {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 3rem;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: #e5e7eb;
  }
  
  .timeline-marker {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #059669;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  
  .timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    color: #6b7280;
    line-height: 1.8;
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 5rem 0;
    background-color: #f9fafb;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: translateY(-4px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
  .gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  /* Footer */
  .footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    color: #059669;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    color: #d1d5db;
    line-height: 1.8;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-link {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.2s;
  }
  
  .footer-link:hover {
    color: #059669;
  }
  
  .footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .timeline-item {
      gap: 1rem;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 1.875rem;
    }
  
    .container {
      padding: 0 0.75rem;
    }
  }
