/* Hoststow Footer Styling */
.hoststow-footer {
    background-color: #28206fc7; /* Dark background for a sleek modern look */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 40px 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

/* Footer Container */
.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

/* Footer Main Content */
.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Keep everything in one line */
    gap: 30px;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0a500;
}

.footer-column p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f0a500; /* Golden color on hover */
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    color: #bbb;
}

.footer-bottom a {
    color: #f0a500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
