/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero-section {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #003366; /* Navy Blue */
    background-image: url('education2.jpg'); /* Add your hero image */
    background-size: cover;
    background-position: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #003366;
    background-color: #FFD700; /* Yellow */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6b800; /* Darker Yellow */
  }
  
  /* Info Section */
  .info-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .info-section h2 {
    color: #003366;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
  }
  
  .info-content {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .info-content img {
    width: 25%;
    border-radius: 10px;
    margin-right: 20px;
  }
  
  .info-text {
    width: 50%;
  }
  
  .info-text p {
    color: #555;
  }
  
  .info-text ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .info-text ul li {
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .info-content {
      flex-direction: column;
    }
  
    .info-content img {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    .info-text {
      width: 100%;
    }
  }


  /* Career Camp Report Specific Styles */
  .career-camp-report {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 20px;
    background-color: white;
    color: #000080; /* navy */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .career-camp-report .header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000080; /* navy */
  }

  .career-camp-report .header h1 {
    color: #000080; /* navy */
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 5px;
  }

  .career-camp-report .header h2 {
    color: #1a73e8; /* blue */
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .career-camp-report .segment {
    margin-bottom: 25px;
    padding: 20px;
    border-left: 4px solid #FBBC05; /* yellow */
    background-color: #f8f9fa;
  }

  .career-camp-report .segment h3 {
    color: #000080; /* navy */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }

  .career-camp-report .segment p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
  }

  .career-camp-report .content-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
  }

  .career-camp-report .text-content {
    flex: 1;
    min-width: 250px;
  }

  .career-camp-report .image-container {
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .career-camp-report .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .career-camp-report .image-container img:hover {
    transform: scale(1.02);
  }

  .career-camp-report .image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }

  .career-camp-report .image-row .image-container {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
  }

  .career-camp-report .outcome-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
  }

  .career-camp-report .outcome-item .icon {
    color: #FBBC05; /* yellow */
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .career-camp-report .outcome-item .text {
    flex: 1;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.4;
  }

  /* Color themes for segments */
  .career-camp-report .preamble {
    background-color: #e8f4fd; /* light blue */
  }

  .career-camp-report .presentations {
    background-color: #fef7e0; /* light yellow */
  }

  .career-camp-report .attendance {
    background-color: #e8f4fd; /* light blue */
  }

  .career-camp-report .outcome {
    background-color: #fef7e0; /* light yellow */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .career-camp-report .content-with-image {
      flex-direction: column;
    }
    
    .career-camp-report .image-row {
      flex-direction: column;
    }
    
    .career-camp-report .image-row .image-container {
      flex: 1 1 100%;
    }
  }

  @media (max-width: 480px) {
    .career-camp-report {
      padding: 15px;
    }
    
    .career-camp-report .segment {
      padding: 15px;
    }
  }