
/* Hero Section */
.hero {
    background: #cce0ff;
    padding: 30px 20px;
    text-align: center;
  }
    
  
  .hero h1 {
    font-size: 28px;
    color: #004080;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 16px;
    color: #333;
  }
    

  .partnership-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .partnership-section h1 {
    font-size: 2.5em;
    color: #005f73;
    margin-bottom: 15px;
  }
  
  .intro {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }
  
  .partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
  }
  
  .partnership-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s ease-in-out;
    text-align: left;
  }
  
  .partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 95, 115, 0.1);
  }
  
  .partnership-card h3 {
    color: #0077b6;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  
  .partnership-card p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
  }
  
  .cta-section {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    border-radius: 12px;
    padding: 50px 20px;
    margin-top: 50px;
  }
  
  .cta-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.05em;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn-primary,
  .btn-secondary {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-primary {
    background: #fff;
    color: #0077b6;
  }
  
  .btn-primary:hover {
    background: #e6f3ff;
  }
  
  .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background: #fff;
    color: #0077b6;
  }