.footer {
    background-color: #e67e22;
    color: white;
    padding: 40px 0;
    font-family: "Prompt", sans-serif;
    width: 100vw;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-left h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-left p {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-right {
    flex: 1;
    text-align: left;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

.footer-right ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.arrow {
    color: white;
    font-weight: bold;
}
