

body1 {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
  }
  .gallery {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    max-width: 800px;
  }
  .image-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 45%;
    transition: transform 0.3s;
  }
  .image-card:hover {
    transform: translateY(-5px);
  }
  .image-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .image-details {
    padding: 10px;
    text-align: center;
  }
  .image-details h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
  }
  .image-details p {
    color: #666;
    font-size: 0.9em;
  }


  
#about {
    padding: 60px 0;
    position: relative;
    background: #f2f2f2;
}

#about .section-header h3 {
    margin-bottom: 20px;
}

#about .about-col-left,
#about .about-col-right {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .icon {
    margin: 0 0 15px 0;
    padding: 0;
    list-style-type: none;
}

#about .icon li {
    display: inline-block;
}

#about .icon li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    padding: 12px 13px;
}

#about h3 {
    text-align: left;
}

#about h3::before {
    left: 0;
}

#about h4 {
    margin: 30px 0 15px 0;
    color: #103121;
    font-weight: 800;
    letter-spacing: 2px;
}

#about .about-col-left img {
    border-radius: 6px;
    box-shadow: 0 0 0 0px #fff inset, 0 0 3px 0 rgba(000, 000, 000, 0.3);
}

#about .about-col-right p {
    color: #353535;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
}

#about .about-col-right p:last-child {
    margin-bottom: 0;
}

#about .about-col-right a {
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 8px 30px;
    color: #ffffff;
    background: #103121;
    border-radius: 30px;
}

#about .about-col-right a:hover {
    background: #081c11;
}

#about .about-col {
    margin-top: 30px;
    padding: 25px 30px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 0 0 0px #fff inset, 0 0 3px 0 rgba(000, 000, 000, 0.3);
}

#about .about-col h4 {
    margin-top: 0;
}

#about .about-col p {
    margin-bottom: 15px;
}

#about .about-col p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    #about {
        text-align: center;
    }
    
    #about h3 {
        text-align: center;
    }

    #about h3::before {
        left: calc(50% - 30px);
    }
    
    #about .about-col-left img {
        margin-bottom: 30px;
    }
    
    #about .about-col-right p {
        font-size: 16px;
    }
}