@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 18px;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    color: #333;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: #007bff;
    width: 0%;
    z-index: 9999;
}

header {
    background-color: #1f55ff;
    height: 60px;
}

header .brand-logo {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100%;
}
section {
    background-color: white;
}

#section-1,
#section-3,
#section-5,
#section-7 {
    background-color: #f8f8f8;
    padding: 2rem 0;
}
#section-2,
#section-4,
#section-6 {
    background-color: #ffffff;
    padding: 2rem 0;
}

.container {
    width: 90%;
    max-width: 1080px;
    margin: auto;
}
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}
nav a {
    text-decoration: none;
    height: 20px;
    width: auto;
}
.voyo-logo {
    width: 78px;
    margin-left: 20px;
}
.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}
h1 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 .5rem 0;
    font-weight: bold;
}
p {
    margin-bottom: 1rem;
    line-height: 1.5;
}
p.no-indent {
    text-indent: 0;
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
ul li {
    margin-bottom: 0.5rem;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem auto;
    min-height: 145px;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-email {
    font-size: 1rem;
    line-height: normal;
    border: 2px solid rgba(31, 85, 255, 1);
    border-radius: 30px;
    background: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 40px;
    padding: 24px;
    color: #1f55ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-email:hover {
    background: #1f55ff;
    color: #fff;
    text-decoration: none;
}
.btn-email svg {
    width: 20px;
    height: 20px;
    fill: #1f55ff;
    margin-right: 8px;
    transition: fill 0.3s ease;
}
.btn-email:hover svg {
    fill: #fff;
}

footer {
    border-top: 1px solid #e0e0e0;
    text-align: center;
    padding: 1rem;
    background-color: #f8f8f8;
}
footer p.copyright {
    text-align: center;
    color: #7c7c7c;
    font-size: 12px;
    margin: 10px 0 10px;
    line-height: 1.5;
}

.mobilebr {
    display: none;
}

@media (max-width: 768px) {
    * {
        font-size: 16px;
    }
    .mobilebr {
        display: block;
    }
    .container {
        width: 95%;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

