/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 0; /* Explicitly set padding to 0 */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 20px;
}

.contact span {
    display: block;
    margin-bottom: 10px;
}

.socials a {
    display: inline-block;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ddd;
}

.footer-section.links ul li a:hover {
    color: var(--primary-color);
}

.contact-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #444;
    color: white;
}

.contact-input::placeholder {
    color: #ddd;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}