body {
    background-color: #f8f9fa;
}
body, .navbar, .nav-link, .btn {
    font-family: 'Roboto', sans-serif;
}

.fp-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.5)), url("/images/system/flex-pallet-bg.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    height: 100vh;

}

.navbar {
    background-color: transparent;
}
.navbar-nav .nav-link {
    color: white;
}
.navbar-brand img {
    height: 40px;
}
.navbar-toggler {
    border-color: white;
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox%3D%220 0 30 30%22 xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath stroke%3D%22rgba%28255, 255, 255, 1%22 stroke-width%3D%222%22 linecap%3D%22round%22 linejoin%3D%22round%22 d%3D%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E');
}
.login-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 0;
}
.login-btn:hover {
    background-color: white;
    color: black;
}
.signup-btn {
    background-color: #1fd4e9;
    color: white;
    border-radius: 0;
}
.signup-btn:hover {
    background-color: #078391;
    color: white;
}
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 91vh;
    text-align: center;
    color: white;
}
.hero-buttons {
    margin-top: 20px;
}
.hero-buttons .btn {
    margin: 0 5px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-weight: 700;
    padding: 10px 10px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 0;
}
.hero-buttons .btn:hover {
    background-color: #1fd4e9;
    color: white;
}
html {
    scroll-behavior: smooth;
}
.section {
    text-align: center;
    width: 100%;
}
.section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.section-pallet-buyers {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), url("/images/system/flex-pallet-buyers.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    color: #cecece;
    height: 1000px;
}
.section-pallet-sellers {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), url("/images/system/flex-pallet-sellers.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    color: #cecece;
    height: 1000px;
}
.section-pallet-signup {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), url("/images/system/flex-pallet-signup.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    color: #cecece;
    height: 1000px;
}

.section-pallet-login {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), url("/images/system/flex-pallet-login.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    color: #cecece;
    height: 1000px;
}

.text-content {
    flex: 1;
    padding: 20px;
}
.image-content {
    flex: 1;
    padding: 20px;
}
.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.highlight {
    color: #1fd4e9;
    font-weight: 700;
}
.cta-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid #1fd4e9;
    background-color: transparent;
    color: #1fd4e9;
    font-weight: 700;
    border-radius: 0;
    transition: background-color 0.3s, color 0.3s;
}
.cta-btn:hover {
    background-color: #1fd4e9;
    color: white;
}
.cta-btn-white {
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-weight: 700;
    border-radius: 0;
    transition: background-color 0.3s, color 0.3s;
}
.cta-btn-white:hover {
    background-color: #1fd4e9;
    color: white;
}
.body-point-text {
    font-weight: 300;
    color: #9a9a9a;
}
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .bi {
    font-size: 1.2rem;
}

.mt-10 {
    margin-top: 10rem !important;
}