* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 30px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 40px;
}

h1 {
  color: #003366;
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #003366;
  text-align: center;
}

.section {
  margin-bottom: 40px;
}

.section-title {
  color: #003366;
  font-size: 1.6rem;
  margin-bottom: 15px;
    
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
}

.text-box {
  flex: 2;
  min-width: 300px;
  text-align: justify;
}

.text-box p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  text-align: justify;
}

.image-box {
  flex: 1;
  min-width: 350px;
  background: #f8f9fa;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.image-below {
  border-radius: 6px;
           
}


 @media (max-width: 700px) {
 .container {
    padding: 20px;
 }
            
 h1 {
     font-size: 1.8rem;
 }
            
 .section-content {
     flex-direction: column;
 } 
 }




