* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
   
}

body {
    font-family: 'fengardo';
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
}

@font-face {
    font-family: 'fengardo';
    src: url('/static/fonts/fengardoneue_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.navbar {
    background-color: WHITE;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #333;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #7796af;
}

.main-container {
    flex-grow: 1;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9DBACE;
}

.contact-container {
    width: 100%;
    max-width: 800px;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    color: #333;
}


.contact-info {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;

}

.contact-link{
    max-width: 230px;
    max-height: 230px;
}

.contact-icon{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0 20px 0 20px;
    border: 10px solid #0000;
}

#contacts{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    border: 10px solid #0000;

}

#contacts:first-child {
    border-top: 10px solid #0000;
}

img{
    border: 10px solid #0000;
}


.footer {
    text-align: right;
    padding: 20px;
    font-size: 12px;
    color: white;
    background-color: #9DBACE;
     border-top: 1px solid #9DBACE;
}

.page-title {
    color: white;
}


@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 40px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-left: 5px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info {
        padding: 25px;
    }


}