@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-MediumItalic.woff2') format('woff2'),
        url('fonts/Inter-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('fonts/Inter-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-BlackItalic.woff2') format('woff2'),
        url('fonts/Inter-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2'),
        url('fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-LightItalic.woff2') format('woff2'),
        url('fonts/Inter-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBoldItalic.woff2') format('woff2'),
        url('fonts/Inter-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-BoldItalic.woff2') format('woff2'),
        url('fonts/Inter-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.woff2') format('woff2'),
        url('fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Black.woff2') format('woff2'),
        url('fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ExtraLightItalic.woff2') format('woff2'),
        url('fonts/Inter-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Light.woff2') format('woff2'),
        url('fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2'),
        url('fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ExtraLight.woff2') format('woff2'),
        url('fonts/Inter-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2'),
        url('fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ExtraBoldItalic.woff2') format('woff2'),
        url('fonts/Inter-ExtraBoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Thin.woff2') format('woff2'),
        url('fonts/Inter-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ThinItalic.woff2') format('woff2'),
        url('fonts/Inter-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Italic.woff2') format('woff2'),
        url('fonts/Inter-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1e1e1e;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    overflow-x: hidden;
    flex-direction: column;
}
h1 {
    text-align: center;
    color: #00c6ff;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #3a3a3a;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}
.container {
    font-size: 1.2em;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.container a {
    color: #fff;
}
.form-container {
    max-width: 480px;
    width: 100%;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    overflow: hidden;
}
.button {
     box-sizing: border-box;
     appearance: none;
     background-color: transparent;
     border: 2px solid #00c6ff;
     border-radius: 0.6em;
     color: #00c6ff;
     cursor: pointer;
     display: flex;
     align-self: center;
     font-size: 1rem;
     line-height: 1;
     margin: 20px;
     padding: 1.2em 2.8em;
     text-decoration: none;
     text-align: center;
     font-weight: 700;
}
.button:hover {
     color: #fff;
     outline: 0;
}
.fade-button {
     transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.fade-button:hover {
     box-shadow: 0 0 40px 40px #00c6ff inset;
}
.link {
    text-align: center;
}
.link a {
    color: #fff;
}

.faq-container, .container-policies {
    font-size: unset;
    line-height: unset;
}
.faq-section {
    margin-top: 30px;
}
.faq {
    background-color: #2c2c2c;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px;
    transition: background-color 0.3s;
}
.faq:hover {
    background-color: #3a3a3a;
}
.question {
    font-weight: bold;
    cursor: pointer;
}
.answer {
    display: none;
    margin-top: 10px;
    line-height: 1.6;
}
.answer a {
    color: #00c6ff;
}

.pill-container {
    display: flex;
    justify-content: center;
}
.pill-container:nth-of-type(2) {
    margin-bottom: 15px;
}
.pill-container:nth-of-type(2) .pill-option {
    border-top: 1px !important;
}
.pill-option {
    width: 50%;
    padding: 10px 0;
    text-align: center;
    border: 2px solid #3a3a3a;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}
.pill-option:hover {
    background-color: #3a3a3a;
}
.pill-option:nth-child(1) {
    border-right: 1px;
}
.pill-option:nth-child(3) {
    border-left: 1px;
}
.pill-option.active {
    background-color: #00c6ff;
    border-color: #00c6ff;
}

hr {
    background-color: #3a3a3a;
    height: 1px;
    border: 0;
    margin-bottom: 15px;
    margin-top: 15px;
}
meter {
    display: block;
    margin: 0 auto;
    width: 12em;
    height: 1.75em;
}
meter::-webkit-meter-optimum-value {
    background: #00c6ff;
}
.dashboard-content {
    display: block;
    text-align: center;
}

.search-button {
    border-radius: 5px !important;
    margin: 0 !important;
    padding: 0.6em 42% !important;
}

@media (max-width: 480px) {
    .form-container {
        max-width: 90% !important;
    }
}

.stars {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.stars b {
    font-size: 40px;
    color: #ccc;
    transition: color 0.3s ease;
}
.stars b.filled {
    color: orange;
}
.feedback-box {
    display: none;
    margin-top: 20px;
}
.feedback-box textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: vertical;
}
.feedback-button {
    padding: 10px 20px;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.feedback-button:hover {
    background-color: #ff9800;
}

.red-button {
    border: 2px solid #ff0039;
    color: #ff0039;
}
.red-button:hover {
    box-shadow: 0 0 40px 40px #ff0039 inset;
}

.feedback-notice {
    box-shadow: 0 0 10px #ffcc00 !important;
    border: 2px solid #ffcc00;
    font-size: 90%;
    text-align: center;
}

.containter-feedback-notice {
    display: block;
}

.navbar-container, .navbar-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 0 15px 0;
    transition: padding 0.3s ease, background-color 0.3s ease;
}
.navbar {
    width: 75%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.navbar-logo img {
    margin: 10px 12px 0 0;
    width: 50%;
}
.navbar-links {
    display: flex;
    gap: 40px;
}
.navbar-links a {
    position: relative;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 50%;
    bottom: -6px;
    background-color: #00c6ff;
    transition: width 0.4s ease, left 0.4s ease;
}
.navbar-links a:hover::after {
    width: 100%;
    left: 0;
}
.navbar-links a:hover {
    color: #00c6ff;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}
.mobile-menu div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.4s ease;
}
.mobile-menu.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu.active div:nth-child(2) {
    opacity: 0;
}
.mobile-menu.active div:nth-child(3) {
    transform: rotate(-45deg) translate(16px, -16px);
}
.navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    background-color: rgba(20, 20, 20, 0.9);
    width: 100%;
    padding: 0px 20px 0px 20px;
    transition: transform 0.5s ease;
    transition: top 0.3s ease;
    transform: translateY(-100%);
}
.navbar-menu.active {
    display: flex;
    transform: translateY(0);
}
.navbar-menu a {
    padding: 15px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.navbar-menu a:hover {
    color: #00c6ff;
}
.navbar-container.scrolled {
    padding: 10px 0;
    background-color: rgba(20, 20, 20, 0.85);
}
.navbar-menu.active.scrolled {
    top: 65px;
}
.navbar-separator {
    width: 75%;
    max-width: 1250px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 100%;
}
.navbar-separator.active {
    display: none;
}

.fix-placement {
    display: grid;
    justify-items: center;
}
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.footer-container {
    background-color: #141414;
    width: 100%;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer {
    padding-top: 20px;
    color: #aaa;
    text-align: center;
    border-top: 1px solid #333;
}
.footer-column {
    width: 30dvw;
}
.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 16px;
    color: #fff;
}
.footer-links {
    display: inline-flex;
    flex-direction: column;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.3s linear;
}
.footer-links a:hover {
    color: #00c6ff;
}
.footer-divider {
    width: 75%;
    max-width: 1250px;
    height: 1px;
    background-color: #333;
    margin: 20px auto;
}
.footer-bottom {
    font-size: 0.9em;
}

.view-data-button {
    box-sizing: border-box;
    appearance: none;
    background: linear-gradient(75deg, #00c6ff, #005aff);
    border: 2px solid #fff;
    border-radius: 0.6em;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    margin: 50px 20px 20px 20px;
    padding: 1.2em 2.8em;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.view-data-button:hover {
    color: #00c6ff;
    outline: 0;
    box-shadow: 0 0 40px 40px #fff inset;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.review-card {
    background: #2c2c2c;
    border-radius: 15px;
    padding: 30px;
    height: 290px;
    width: 330px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.review-name {
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 600;
    color: #fff;
}
.review-stars span {
    color: orange;
    font-size: 2em;
    margin: 0 2px;
}
.review-message {
    line-height: 1.5;
}
.view-reviews-button {
    margin: 40px 20px 20px 20px;
    padding: 1.2em;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }
    .footer-column {
        width: 100% !important;
    }
    .footer-container {
        margin-top: 50px;
    }
    .form-container {
        margin-top: 35%;
    }
    .navbar-container {
        position: fixed !important;
    }
    .small-title-mobile {
        font-size: 1.45em !important;
    }
    .navbar {
        width: 90%;
    }
    .navbar-links {
        display: none;
    }
    .mobile-menu {
        display: flex;
    }
    .navbar-separator {
        width: 100%;
        left: 0;
    }
    .container {
        margin-top: 80px;
    }
    .navbar-logo img {
        width: 90% !important;
        height: unset !important;
    }
    .containter-feedback-notice {
        margin-left: 35px;
    }
    .footer-long-content, .container-short-content, .container-policies {
        margin-top: unset !important;
    }
    .view-reviews-button {
        margin: 30px 20px 20px 20px;
    }
    .review-card {
        max-width: 90%;
        padding: 20px;
    }
    .fix-placement {
        margin-top: 30%;
    }
}