html {
  scroll-behavior: smooth;
}

/* Global font */
body {
  font-family: 'Montserrat', sans-serif;
  color: #0c4160;
  margin: 0;
  padding: 0;
}
/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1a2b3c;
}

.about-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0d2a44;
  letter-spacing: 2px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.8;
}

.about-content li{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    text-align: left
}

.about-content p{
    text-align: left;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.para-heading-line {
    height: 4px;         /* thickness of the line */
    background-color: #0c4160b8; /* blue color */
    margin: 10px 0 20px 0;  /* space above and below */
    border-radius: 2px;
    width: 40%;     /* optional: rounded edges */
}

