.hero2-body {
     background: rgb(226, 237, 237);
    background: linear-gradient(180deg, rgba(226, 237, 237, 1) 25%, rgba(226, 237, 237, 1) 50%, rgba(248, 248, 248, 1) 75%);
    width: 100%;
    margin: 0 auto !important;
    align-items: center;
 }
 
 
.hero2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 4rem 2rem;
    gap: 2rem;
    background: rgb(226, 237, 237);
    background: linear-gradient(180deg, rgba(226, 237, 237, 1) 25%, rgba(226, 237, 237, 1) 50%, rgba(248, 248, 248, 1) 75%);
    max-width: 1200px;
    margin: 0 auto !important;
    align-items: center;
}

.hero2-content {
    max-width: 600px;
    margin-left: 5em;
}

.hero2 h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero2 p {
    font-size: 1em;
    margin-bottom: 2rem;
    color: #4b5563;
}

.hero2 button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

   .cta-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta-buttons a {
      text-decoration: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .cta-primary {
      background-color: #365071 !important;
      color: white !important;
    }

    .cta-primary:hover {
      background-color: #3f779a !important;
    }

    .cta-secondary {
      background-color: #e5e7eb !important;
      color: #365071 !important;
    }

    .cta-secondary:hover {
      background-color: #d1d5db !important;
      color: #3f779a !important;
    }

    .cta-tertiary {
      background-color: transparent;
      border: 2px solid #365071 !important;
      color: #365071 !important;
    }

    .cta-tertiary:hover {
      background-color: #eff6ff;
      color: #3f779a !important;
      border: 2px solid #3f779a !important;
    }


.slideshow-container {
    position: relative;
    max-width: 400px;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    /*text-align: right;*/
    margin-left: 5em;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 400px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

@media (max-width : 768px) {
    .hero2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero2-content {
        margin-left: unset;
    }

    .slideshow-container {
        margin: 0 auto !important;

    }
    
    .cta-buttons a {
        margin: 0 auto !important;
    }
    
}

    hr {
    width: 90% !important;
    margin: auto !important;
}

