
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f7fb;
    font-family: Arial, sans-serif;
}


main {
    flex: 1; 
}

.background {
    position: fixed;       
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('B52D0992-6272-4842-BC69-D1247917BD2D.JPG');
    background-size: cover;
    background-position: center;
    z-index: -1;           
}

.background2 {
    position: fixed;       
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('70F41FB5-B453-4A26-900F-6747A83811D7.JPG');
    background-size: cover;
    background-position: center;
    z-index: -1;           
}

body {
    margin: 0;
    padding: 0;
    /*background: #f5f7fb; */
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #004a9c; 
    color: #ffffff;
    padding: 15px 15px;
    text-align: center;
    font-size: 14px;
    /*border-top: 3px solid #fff;  */
    /*margin-top: 40px; */
    margin-top: auto;
}
/*
.footer_rez {
    background-color: #004a9c; 
    color: #ffffff;
    padding: 15px 15px;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #fff;  
    margin-top: 280px;
}*/

.container {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.15);
}

/* =============================
   NAVBAR
============================= */

.navbar {
    background: #0057b8;
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

/* mobile hamburger */
.nav-toggle {
    font-size: 28px;
    display: none;
    cursor: pointer;
    padding: 4px 10px;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #ffdd00;
}


/* Mobile menu */
@media (max-width: 850px) {

    .nav-menu {
        position: fixed;      /* covers content nicely */
        top: 0;
        right: -100%;         /* hide it initially */
        height: 100%;
        width: 90%;
        background: #004a9c;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        transition: right 0.3s ease;
        z-index: 10000;
    }

    .nav-menu.show {
        right: 0;             /* slide in menu */
    }

    .nav-menu li {
        margin: 20px 0;
        width: 100%;
    }

    .nav-menu li a {
        font-size: 18px;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    

    
}

.cookie-banner {
    position: fixed;
    /*top:50%;*/
    bottom:50px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    width: 90%;
    max-width: 480px;
    
    z-index: 9999;
    text-align: center;
    font-size: 15px;
    /*flex-direction: column;*/
    display:flex;
    

}
/*#003f7f*/

.cookie-accept {
    margin-top: 15px;
    padding: 6px 12px;
    border: none;
    background: #0057b8;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-banner a {
    color: #0057b8;
    text-decoration: underline;
}

.cookie-banner button {
    margin-top: 10px;
    
    padding: 10px 18px;
    background: #0057b8;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

.cookie-banner button:hover {
    background: #5ca1f0;
}



.gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.15);
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}






/*
.logos {
    display: flex;              
    justify-content: center;     
    align-items: center;         
    gap: 20px;                   
    flex-wrap: wrap;          
    margin-top: 20px;            
    padding: 10px 0;             
    background-color: #fff;   
    border-radius: 8px;         
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}

.logos img {
    max-height: 60px;           
    width: auto;                
    transition: transform 0.3s ease; 
}

.logos img:hover {
    transform: scale(1.1);      
}
*/

.logos img {
    max-height: 40px;           
    width: auto;                
    transition: transform 0.3s ease;
    border-radius: 4px; 
    padding:10px;
    background-color: #fff;
}

.logos img:hover {
    transform: scale(1.1);     
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 850px){

    .logos img {       
        max-width: 80%;
    }

    .footer p {
        font-size: 14px;
        padding: 0 5px;
    }
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    
}

.accordion-header {
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: #e8f0ff;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #d0e2ff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; 
    background: #fff;
    transition: max-height 0.3s ease;
}

.accordion-header.active + .accordion-content {
    padding: 15px 20px; 
}


@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* LOGOS 
.logos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.logos img {
    height: 60px;
}*/




.form-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.15);
    max-width: 1200px;
    margin: 30px auto;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #003f7f;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #b7c3d7;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    background: #f9fbff;
}

form input:focus, 
form textarea:focus {
    outline: none;
    border-color: #0057b8;
    background: #ffffff;
}

button[type="submit"] {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background: #0057b8;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button[type="submit"]:hover {
    background: #003f7f;
}

@media (max-width: 600px) {
    .container, .form-box {
        width: 90%;
        padding: 15px;
    }

    .form-box input, 
    .form-box textarea, 
    .form-box button {
        font-size: 16px;
        padding: 10px;
    }
}