

/* Footer general */
.footer {
    background-color: rgb(7, 15, 24);
    color: #fff;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

/* Container principal */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Descrierea agenției */
.footer-about {
    flex: 1;
    min-width: 300px;
}

.footer-about h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* Link-uri rapide */
.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Informații de contact */
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffa500;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
}
