/* Footer */
footer {
    background: #1a3a2e;
    color: #fafafa;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    flex-shrink: 0;
}

.footer-right {
    text-align: center;
    flex: 1;
}

.footer-brand {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

.footer-brand:hover, 
.footer-email:hover {
    text-decoration: underline;
}

.footer-email {
    text-decoration: none;
    color: inherit;
    font-size: 0.9em;
}     

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}