.simple-footer {
    border-top: 1px solid #eee;
    padding: 60px 0 30px 0;    
    margin-top: 300px;
}

.footer-container {
    max-width: 1300px;         
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap;               
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-simple {
    height: 45px;
    margin-bottom: 15px;
    display: block;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-contact a {
    font-size: 16px;
    font-weight: 600;
}

.footer-bottom-line {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    font-size: 13px;
}