#footercontent footer {
    background: linear-gradient(135deg, #1a1a1a, #262626); /* Lightened dark gray gradient */
    color: #888888; /* Dark gray for text */
    text-align: center; /* Center the text */
    padding: 40px 20px; /* Vertical padding */
    position: relative; /* Positioning */
    bottom: 0; /* Align at the bottom */
    width: 100%; /* Full width */
    font-family: 'Arial', sans-serif; /* Font style */
}

#footercontent .footer-content {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center the content */
}

#footercontent h3 {
    margin-bottom: 10px; /* Space below title */
    font-size: 24px; /* Title size */
}

#footercontent .footer-links {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 20px 0; /* Space above and below links */
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
    justify-content: center; /* Center links */
}

#footercontent .footer-links li {
    margin: 0 15px; /* Space between links */
}

#footercontent .footer-links a {
    color: #888888; /* Dark gray for links */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Link size */
    transition: color 0.3s ease; /* Smooth transition */
}

#footercontent .footer-links a:hover {
    color: #777777; /* Lighter gray on hover */
    text-decoration: underline; /* Underline on hover */
}

#footercontent p {
    font-size: 14px; /* Paragraph size */
    margin: 10px 0; /* Space above and below paragraph */
}

#footercontent .social-icons {
    margin-top: 20px; /* Space above social icons */
}

#footercontent .social-icons a {
    color: #888888; /* Dark gray for icons */
    margin: 0 10px; /* Space between icons */
    font-size: 24px; /* Icon size */
    transition: color 0.3s ease; /* Smooth transition */
}

#footercontent .social-icons a:hover {
    color: #777777; /* Lighter gray on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
    #footercontent h3 {
        font-size: 20px; /* Smaller title size */
    }

    #footercontent .footer-links a {
        font-size: 14px; /* Smaller link size */
    }

    #footercontent p {
        font-size: 12px; /* Smaller paragraph size */
    }
    
    #footercontent .social-icons a {
        font-size: 20px; /* Smaller icon size */
    }
}
