/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    background-size: cover;
    background:url(/images/back.jpg) no-repeat 50% fixed;
}

div.main {margin:20px auto;width:90%;}

div.header {width:100%;margin:40px auto;}
/* max-width:1000px; */
div.header img {width:100%;}

div.moto {margin-top:40px;width:100%;}
div.moto img {width:100%;max-width:900px;}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 30px;
    padding: 10px;
}

header h1 {
    color: #333;
    margin-bottom: 10px;
}

h3 {color:#445978;font-weight:300;font-size:34px;margin:0 0 20px}

.container {
    /* max-width: 500px; */
    margin: 40px auto 150px 0;
    padding: 20px;
    /* background: rgba(255,255,255,.8); */
    background:#CFCFCF;
    /* border-radius: 8px; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

}

.container a {color:#445978;}
.container a:hover {color: #445978;}

form {margin-bottom:40px;
    display: flex;justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;}

form p {width:100%;color:#445978;}

/* Form styles */
.form-group {
    margin-bottom: 0px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #445978;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #445978;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    /* width: 100%; */
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

/* Video section styles */
#videoSection {
    margin-top: 30px;
}

#vimeoPlayer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

#vimeoPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer styles */
footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
}

.logos {
    margin-left:0;margin-top:40px;margin-bottom:40px;
    /* padding-left:40px */
    display: flex;
    align-items:center;
    justify-content: flex-start;
    gap: 20px;
}
@media (max-width: 940px) {
    .logos {flex-wrap:wrap;justify-content:center;}
    .logos img {max-width:45%;}
}
/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
        max-width: 98vw;
    }
    input, button {
        font-size: 14px;
    }
}

