footer {
    background-color: #2C193D;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-section h2, .footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-section h2 .purple-line::after, .footer-section h3 .purple-line::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: #7700FF;
}

.footer-section p {
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7700FF;
}

.footer-section form {
    display: flex;
    flex-direction: column;
}

.footer-section form input, .footer-section form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer-section form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #7700FF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-section form button:hover {
    background-color: #B9A1D6;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
}



@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin: 20px 0;
    }
}