body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.title {
    position: relative;
    background-image: url('/../../../assets/photos/bg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
    z-index: 1;
}

.title h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.alt_1 {
    background-color: #f8f9fa;
    padding:20px;
}

.alt_2 {
    background-color: #e9ecef;
    padding: 20px;
}

.section_container {
    max-width: 1150px;
    display: flex;
    flex-flow: row nowrap;
    justify-content:center;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0px 10px;
    background-color: #fff;
}

.section {
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    padding: 20px 0px;
    background-color: #fff;
}

.content {
    max-width: 50%;
    padding: 40px;
    box-sizing: border-box;
}
.content p{
    text-align: justify;
}
.content h1 {
    font-size: 3rem;
}

.image {
    max-width: 50%;
    margin: auto;
    padding: 40px;
    box-sizing: border-box;
    border-left: 1px solid gray;
}

.image img{
    max-width: 100%;
    height: auto;
    display:block;
    border-radius: 40px;
}

.info {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 900px; /* Decreased width by 10% */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.table {
    background-color: #f8f9fa;
}

.symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto; /* Adjust this based on your layout needs */
    margin: 10px 30px 30px 30px;
}  

.hexagon {
  position: relative;
  width: 100px; /* Adjust width based on the desired size */
  height: 100px; /* Height to maintain equal sides for a perfect hexagon */
  background-color: #d3d3d3; /* Light grey background color */
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(
    50% 0%, 
    100% 25%, 
    100% 75%, 
    50% 100%, 
    0% 75%, 
    0% 25%
  );
}

.icon {
  width: 60%; /* Adjust the icon size relative to the hexagon */
  height: auto;
}
   
.grid-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px; /* Decreased width by 10% */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.grid-table2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px; /* Decreased width by 10% */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.grid-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.grid-item p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .grid-table {
        grid-template-columns: 1fr;
    }
    
    .grid-table2 {
        grid-template-columns: 1fr;
    }

    .grid-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section{
        flex-direction: column;
        width: 100%;
    }

    .content{
        border: none;
        max-width: 100%;
    }

    .image{
        border: none;
        max-width: 100%;
    }
}