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;
}

.info {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1080px; /* Decreased width by 10% */
    margin-left: auto;
    margin-right: auto;
}

.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;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1080px; /* 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;
    }
}

.section-title {
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #000000; /* Subtle underline */
    position: relative;
}

.alternating-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

.section, .section.reverse {
    display: flex;
    align-items: stretch; /* Ensures both divs are of equal height */
    justify-content: space-between;
    gap: 20px;
    max-width: 100%; /* Ensure sections use full width of their container */
}

.section.reverse {
    flex-direction: row-reverse;
}

.content, .image {
    height: auto; /* Ensures both divs have the same height */
    padding: 20px;
    background-color: #f8f9fa;
}

.content {
    flex: 0 0 70%; /* Width 70% */
    max-width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-content: space-around;
}

.content a {
    text-decoration: none;
    color: black;
}

.content p {
    font-size: 1.1rem;
}

.image {
    flex: 0 0 30%; /* Width 30% */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto; /* Centers the image */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .section, .section.reverse {
        flex-direction: column-reverse;
        gap: 0;
    }

    .content {
        width: 100%;
        padding-top: 0px;
        max-width: calc(100% - 40px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        align-content: space-around;
    }
}
