:root {
  --primary-color: #df9223;
}
/* 1. Remove background from the outer section and inner container */
div#\30 641526d-5b3b-4f40-b55e-58e9eba6fe32,
.features-section.container {
    background-color: transparent !important;
    background-image: none !important;
}

/* 2. Style the individual feature items as rectangles */
.features-section .feature {
    /* Colors and Background */
    background-color: #f8f9fa !important; /* Light background for the card */
    color: black !important;             /* Black text */
    
    /* Shape and Border */
    border: 2px solid #df9223 !important; /* The original orange color */
    border-radius: 8px !important;        /* Small radius for a rectangular look */
    
    /* Sizing and Spacing */
    min-width: 200px;
    min-height: 150px;
    padding: 24px !important;
    margin: 10px !important;
    
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 3. Force all text and icons inside the cards to be black */
.features-section .feature * {
    color: black !important;
}

/* Reverted to 200px symmetrical spacing on Desktop (992px+) */
@media (min-width: 992px) {
    section#f7a72d2e-3aed-4c5d-9eb8-8d104e3913f2 {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    /* 200px space on each side */
    section#f7a72d2e-3aed-4c5d-9eb8-8d104e3913f2 .container.container-slider {
        width: calc(100% - 400px) !important; 
        max-width: calc(100% - 400px) !important;
        margin: 0 auto !important; 
    }

    section#f7a72d2e-3aed-4c5d-9eb8-8d104e3913f2 img.slider-image-0 {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px !important;
    }
}

/* Make any slider button cover the entire slide area */
.slider-item .btn.btn-primary {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;      /* Sit on top of everything */
    
    /* Make transparent */
    background: transparent !important;
    border: none !important;
    opacity: 0 !important;
    
    /* Remove text visibility */
    color: transparent !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}

/* Ensure the slide container is the anchor for the absolute button */
.slider-item a, 
.slider-item .box-1-1 {
    position: relative !important;
}
@media (max-width: 767px) {
  #df1e82c1-0d3a-425e-b635-161c5cd6b115 .gallery-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/* Target the container on mobile devices */
@media (max-width: 768px) {
  .features-section.container.d-flex {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 20px; /* Adds space between the stacked items */
  }

  .features-section.container.d-flex .feature {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}