  body {
    background-image:none;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff00;
    overflow: hidden;
    padding: 2rem 0rem;
    margin-bottom: 20px;
    padding-top: 3rem;
  }
  
  .content {
    display: flex;
    min-height: 600px;
  }
  
  .left-section {
    flex: 1;
    overflow: hidden;
  }
  
  .volunteer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .right-section {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  
  .logo-v-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .logo-v {
    width: 400px;
    height: 400px;
    object-fit: contain;
  }
  
  .logo-v-text {
    text-align: center;
  }
  
  .step-up {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: bold;
    display: block;
  }
  
  .and {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .volunteer {
    color: var(--coral);
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
  }
  
  .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
  }
  
  .description p {
    margin-bottom: 1.5rem;
  }
  
  .contact {
    margin-top: 2rem;
  }
  
  .contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
    }
    
    .left-section {
      height: 300px;
    }
    
    .right-section {
      padding: 2rem;
    }
  }