.static-inner-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -5px; /* Allows padding inside columns without pushing them to a new line */
}

.static-inner-row > * {
  box-sizing: border-box;
  flex: 1 1 calc(33.333% - 10px); /* Three columns per row, accounting for padding */
  padding: 5px;
  min-width: 0; /* Allows columns to shrink within their container */
}

.static-inner-row img {
  max-width: 100%;
  height: auto;
  display: block;
}

.box-with-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    background-color: #ffffff; /* Ensure consistent background */
    flex: 1; /* Allows columns to resize and fit evenly */
    min-width: 200px; /* Ensure columns don’t shrink too much */
}

.white-text {
    color: #ffffff;
}

.collapsing-column {
    border-right: 1px solid #d6d6d6; /* Faint grey line for better contrast with #f9f9f9 background */
    margin: 0; /* Ensure no extra spacing between columns */
    padding: 10px; /* Optional padding for better layout */
}

.collapsing-column:last-child {
    border-right: none; /* Remove the right border for the last column */
}

@media screen and (max-width: 768px) { /* Adjust the max-width as per your mobile breakpoint */
    .collapsing-column {
        border-right: none; /* Remove right border on mobile */
        border-bottom: 1px solid #d6d6d6; /* Add faint grey line at the bottom */
    }

    .collapsing-column:last-child {
        border-bottom: none; /* Remove the bottom border for the last column on mobile */
    }
}

.centered-icon-text {
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center; /* Center both horizontally */
    justify-content: center; /* Center vertically if needed */
    text-align: center; /* Ensure text alignment is centered */
}

.icon-text {
    display: inline-flex; /* Ensure the icon and text are inline */
    align-items: center; /* Align icon with text baseline */
    gap: 8px; /* Adjust spacing between icon and text */
}


.rounded-column {
    background-color: #163040;
    border-radius: 15px;
    padding: 10px;
}

p a,
li a {
    text-decoration: underline; /* Ensures all links inside paragraphs and list items are underlined */
    color: #0056b3; /* Using your adjusted color */
}

p a:hover,
li a:hover {
    color: #003366; /* Optional: Change color when hovered */
}


/* Sticky Container Styling */
.sticky-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Full-width background */
    background-color: #fff !important; /* White background */
    padding: 20px 0; /* Padding for space around the button */
    text-align: center; /* Center-align the button within the container */
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for the container */
}

/* Button Styling */
.sticky-button-link {
    display: inline-block; /* Center-align with intrinsic size */
    width: 80%; /* Make the button ~80% of the screen width */
    max-width: 500px; /* Optional: Limit the button's width for larger screens */
    background-color: #b53d53; /* Button color */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 15px 0; /* Vertical padding for height */
    border-radius: 30px; /* Rounded button */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Button Hover Effect */
.sticky-button-link:hover {
    background-color: #0056b3; /* Darker button color on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

/* Ensure it only appears on small screens */
@media (min-width: 768px) {
    .sticky-button {
        display: none;
    }
}

.sticky-button-link {
    color: #fff !important;
}

.sticky-button-link:link,
.sticky-button-link:visited {
    color: #fff !important;
    text-decoration: none !important;
}

ul,ol {
    padding-left: 30px; /* Adjust as needed */
}