
.footer-main-content {
    /* The main content container will be placed over the assumed background image */
    background-color: transparent; /* This container itself shouldn't have a background based on the image */
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* <-- IMPORTANT: This makes children stretch to fill the height */
    padding: 0; /* Remove padding here, add it to the inner boxes */
    box-sizing: border-box;
}

/* Footer Description Section (Left text) */
.footer-description {
    /* This now acts as a distinct box with its own background */
    flex: 0 0 25%; /* Flex-grow: 0, flex-shrink: 0, base-width: 25% */
    background-color: transparent; /* Teal/Cyan background with opacity */
    padding: 30px 25px; /* Adjust padding inside the box */
    border-top-left-radius: 8px; /* Rounded top-left corner */
    border-bottom-left-radius: 8px; /* Rounded bottom-left corner */
    box-shadow: none; /* No shadow */
    border-left: none; /* No border */
    /* Remove padding-right here, the gap will be handled by the main flex container implicitly */
}

/* Add a new heading for the Advertisina platform AugforM */
.footer-description h3 {
    color: #fff; /* White color for the heading */
    font-size: 1.8em; /* Larger font size for the main title */
    margin-bottom: 15px; /* Space below the heading */
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Subtle white glow for the main title */
}

.footer-description p {
    color: #e0e0e0; /* Lighter text color for readability */
    line-height: 1.9;
    margin: 0;
    font-size: 1em; /* Slightly smaller font size for paragraph, adjust if needed */
    text-align: left;
}

/* Footer Columns Container (Right section) */
.footer-columns {
    /* This also acts as a distinct box with its own background */
    flex: 0 0 75%; /* Take 75% of the width to make up 100% with the left box */
    display: flex;
    justify-content: space-around; /* Distribute columns evenly, changed from space-between */
    gap: 20px; /* Reduced gap for better spacing */
    background-color: transparent; /* Blue background with opacity */
    padding: 30px 40px; /* Adjust padding inside the box, similar to left */
    border-top-right-radius: 8px; /* Rounded top-right corner */
    border-bottom-right-radius: 8px; /* Rounded bottom-right corner */
    box-shadow: none; /* No shadow */
    border-radius: 0; /* Remove if you want sharp corners */
    /* Removed padding-left here, rely on justify-content and gap */
}

.footer-col {
    /* Each column will take equal available space, but allow some shrinking */
    flex: 1;
    min-width: 100px; /* Prevent columns from becoming too narrow */
    max-width: 200px; /* Add a max-width to prevent them from spreading too much */
}

.footer-col h4 {
    /* Subtle glow for headings */
    color: #00aaff; /* Bright blue accent color */
    font-size: 1.2em;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.6), 0 0 15px rgba(0, 170, 255, 0.3); /* Subtle blue glow */
    white-space: nowrap; /* Prevent "Product Information company" from wrapping */
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    /* Subtle glow for links */
    color: #99FFFF; /* Lighter, more vibrant teal/cyan for links, close to image */
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
   /* text-shadow: 0 0 5px rgba(153, 255, 255, 0.3); /* Added subtle light glow for links */
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: none;
    /*text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.4);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-main-content {
        padding: 0; /* No padding here, padding is on inner boxes */
    }
    .footer-description {
        flex-basis: 35%; /* Adjust width for smaller screens */
        padding: 25px 20px;
    }
    .footer-columns {
        flex-basis: 65%; /* Adjust width for smaller screens */
        padding: 25px 20px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        flex-direction: column; /* Stack vertically on tablets/mobiles */
        align-items: center; /* Center items when stacked */
        padding: 20px; /* Add overall padding when stacked */
    }
    .footer-description {
        width: 100%; /* Full width when stacked */
        padding: 30px 20px;
        margin-bottom: 20px; /* Space below the description when stacked */
        border-radius: 8px; /* Apply rounded corners to all corners when stacked */
        text-align: center; /* Center text when stacked */
    }
    .footer-description h3,
    .footer-description p {
        text-align: center; /* Ensure internal text is centered */
    }
    .footer-columns {
        width: 100%; /* Full width when stacked */
        flex-wrap: wrap; /* Allow columns to wrap if needed */
        justify-content: center; /* Center columns when wrapped */
        padding: 30px 20px;
        border-radius: 8px; /* Apply rounded corners to all corners when stacked */
    }
    .footer-col {
        flex-basis: 45%; /* Two columns per row on tablets */
        margin-bottom: 20px;
        text-align: center; /* Center content of each column */
    }
    .footer-col ul {
        text-align: center; /* Center links in columns */
    }
}

@media (max-width: 480px) {
    .footer-col {
        flex-basis: 90%; /* One column per row on very small mobiles */
    }
}