/* footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
    border: none;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    background: #FAFAFA;
}

main {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.full-width-footer {
    background: white;
    color: #ecf0f1;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-image-container {
    width: 100%;
    height: 229px;
    position: relative;
    overflow: hidden;
}

.footer-image {
    max-width: 1440px;
    margin-left: 17px;
    width: 100%;
    height: 100%;
    background: url('/assets/img/footer1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, 0.5);
}

.image-button {
    margin-right: 19px;
    margin-bottom: 80px;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    background: white;
    color: black;
    border: none;
    padding: 19px 35px;
    padding-right: 10px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    /*align-items: center;*/
    align-items: flex-end;
    gap: 6px;
    z-index: 8;
}
.my-button {
    padding-bottom: 85px;
    padding-right: 65px;
}

.image-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ff6251, #e74c3c);
    background: white;
}

.footer-content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 40px;
}

.footer-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    padding-left: 69px;
}

.footer-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #9B9B9C;
    position: relative;
    padding-bottom: 10px;
}

.footer-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #e74c3c;
}

.footer-text p {
    color: #9B9B9C;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}
p.ready {
    color: white;
    line-height: 1.0;
    font-size: 80px;
    padding-bottom: 20px;
    text-align: left;

}
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    min-width: 300px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: black;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;

}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #9B9B9C;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.footer-links a:hover {
    color: black;
    transform: translateX(5px);
}
.fas {
    color: black;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.2);
    background: white;
}
ul {
    padding-left: 20px;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-text {
        padding-right: 0;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 0 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 1 0 100%;
    }

    .footer-image-container {
        height: 250px;
    }

    .image-button {
        padding: 14px 25px;
        font-size: 16px;
    }

    .footer-text h2 {
        font-size: 24px;
    }
}

    @media (max-width: 426px) {
        p.ready {
            display: none;
        }
    }
@media (max-device-width: 1024px) {
    p.ready {
        font-size: xxx-large;
        padding-bottom: 40px;
    }
}


