.site-footer {
    background-color: #222;
    color: #a0a0a0;
    padding-top: 50px;
    margin-top: 60px;
    font-size: 15px;
    border-top: 4px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-logo i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--color-primary);
}

.footer-about-text {
    line-height: 1.7;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-subscribe-form {
    display: flex;
    position: relative;
    margin-top: 15px;
}

.footer-subscribe-form input {
    width: 100%;
    padding: 12px 15px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
}

.footer-subscribe-form input::placeholder {
    color: #888;
}

.footer-subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--color-primary);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer-subscribe-form button:hover {
    background-color: var(--color-primary-dark);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}
