/*
footer
*/
.footer, .footerpage{
    color: #fff;
    padding: 60px 20px;
}
.footer{
   background-color: rgba(9, 40, 56, 0.72);
   padding: 20px 0;
}
.footer-headline{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}
.footer-content{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;

}
.footer-info{
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
}
.info{
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: 40px;
    justify-content: center;
}
.info img{
    flex: 0 0 auto;
    max-width: 300px;
    height: auto;
}
.address-title{
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 8px;
    color: rgba(154, 232, 255, 0.95);
}
.address{
    font-style: normal;
    margin: 0 0 20px;
    line-height: 1.8;
    font-size: 14px;
}
.contact-info{
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}
.contact-info a{
    color: rgba(154, 232, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover{
    color: #fff;
    text-decoration: underline;
}
.footer-social{
    grid-column: 2;
    grid-row: 2;
    align-self: flex-end;
    text-align: center;
    margin-right: 20px;
}
.social-title{
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px;
    color: rgba(154, 232, 255, 0.95);
}
.sns-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.sns-icons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sns-icons a:hover{
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
.sns-icons img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sns-placeholder{
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 900px) {
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
    }
    .footer-info {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    .info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 0 !important;
        text-align: center !important;
        width: 100% !important;
        gap: 20px !important;
    }
    .info img {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto 10px auto !important;
        display: block !important;
    }
    .address-section {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .footer-social {
        width: 100% !important;
        text-align: center !important;
        grid-column: auto !important;
        grid-row: auto !important;
        align-self: center !important;
    }
}
