.text-ltop {
  display: flex;
  align-items: center;      
  justify-content: space-between; /* text on left, image on right */
  padding-left: 50px;
  padding-right: 50px;
  gap: 40px;    
  min-height: 300px; /* optional */
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.text-block {
  max-width: 500px;
  padding-top: 20px; /* small gap from top */
}

/* Title and subtitle */
.title {
  font-size: clamp(24px, 4vw, 36px);
  font-family: "Inter", sans-serif;  
  font-weight: 700;                  
  font-style: italic;               
  color: #222;                       
  display: inline-block;             
  border-bottom: 4px solid #3a6cf4; 
  padding-bottom: 5px;               
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.u-title {
  display: block;
  font-size: clamp(14px, 3vw, 18px);
  color: #555;
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-ltop {
    flex-direction: column; /* stack text and image on mobile */
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }
  .text-block {
    max-width: 100%;
    text-align: center;
  }
  .title {
    font-size: clamp(20px, 6vw, 28px);
    text-align: center;
  }
  .u-title {
    font-size: clamp(12px, 4vw, 16px);
    text-align: center;
    margin-bottom: 20px;
  }
}

.IMG {
  display: flex;                     /* takes remaining space */
  justify-content: center;
      /* centers the image horizontally */
      padding-top: 20px; /* small gap from top */
}

.P{
  
  height: 300px;
  width: 650px;
  flex: 1; 
  border-radius: 100px;

}


.footer {
  width: 100%;
  max-width: 1200px;       /* matches your main container */
  margin: 50px auto 0;     /* 50px space from content, centers it */
  background: #444;        /* dark but not black */
  color: #f5f5f5;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  padding: 20px;           /* internal spacing */
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 10px rgba(0,0,0,0.15);
  box-sizing: border-box;  /* ensures padding doesn’t exceed width */
}

.footer a {
  color: #00C6FF;   /* accent color for links */
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}



