html {
    scroll-behavior: smooth;
}

body {
    background: #111;
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding-top: 25px;
    text-align: center;
}

h1 {
    font-size: 80px;
    margin-bottom: 10px;
    color: rgb(248, 250, 249);
}

.tagline {
    font-size: 24px;
    color: #e7f703;;
    margin-bottom: 40px;
}

.start-button {
    background: #2f7d32;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    margin: 40px auto 0;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-sizing: border-box;
}

.start-button:hover {
    background: #3d9c41;
}

header {
    position: relative;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 30%;

    width: 700px;
    height: 300px;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        ellipse,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,0) 100%
    );

    pointer-events: none;
}

.header-art {
    position: relative;
    z-index: 1;
}

.header-needle {
    position: absolute;
    z-index: 3;
}

nav {
    position: relative;
    z-index: 10;
}

.hero {
    position: relative;
    z-index: 10;
}

nav h2 {
    margin: 0;
}

.why-choose h2 {
    color: #ff1a1a;
}

.contact {
    padding: 5px 20px 5px;
}

.contact h2 {
    color: #ff1a1a;
    margin-bottom: 20px;
}

.contact p {
    margin: 12px 0;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav {
    background: transparent;
    padding-top: 25px;
}

nav a:hover {
    color: #3d9c41;
}

.how-it-works {
    margin-top: 150px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;

    background: #1b1b1b;

    padding: 25px;

    border-radius: 12px;
}

.about {
    margin-top: 80px;
    text-align: center;
}

.about h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #f11d05;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 22px;
}

.about-highlight {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #ffd54f;
    margin: 40px 0;
}

.about-ending {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 40px;
}

.step h3 {
    color: #e60606;
}

.step p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* FAQ */

.faq {
    margin-top: 80px;
    text-align: center;
}

.faq h2 {
    color: #de1a04;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: .25s;
}

.faq-item:hover {
    border-color: #c0392b;
    transform: translateY(-3px);
}

.faq-item h3 {
    color: white;
    margin-bottom: 15px;
}

.faq-item p {
    color: #ddd;
    line-height: 1.7;
}

/* Final Call To Action */

.cta {
    text-align: center;
    margin: 20px 0;
}

.cta h2 {
    color: #d81600;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd;
}

footer {
    margin-top: 100px;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

footer h3 {
    color: #e01802;
    margin-bottom: 10px;
}

footer p {
    color: #bbb;
    margin-bottom: 15px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: .2s;
}

.footer-links a:hover {
    color: #df1802;
}

.copyright {
    margin-top: 5px;
    font-size: .9rem;
    color: #777;
}

footer {
    margin-top: 20px;
    position: relative;
    z-index: 9999;
    background: #111;
}

/* ===========================
   Tablets & Phones
=========================== */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 12px;
    }

    .hero {
        padding: 40px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .steps,
    .benefits {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 0 20px;
    }

    .contact-info {
        text-align: center;
    }

    footer {
        text-align: center;
    }

}/* ===========================
   Small Phones
=========================== */

@media (max-width: 480px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

.start-button {
    background: #2f7d32;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    margin: 40px auto 0;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-sizing: border-box;

transition: all .25s ease;
}

.start-button:hover {
    background: #3d9c41;
    transform: translateY(-2px);
}

    .container {
        padding: 10px;
    }

}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
}

.logo img {
    width: 44px;
    transition: transform .8s ease;
}

.logo:hover img {
    transform: rotate(360deg);
}

.header-art{
    display:block;
    max-width:100%;
    height:auto;
}

.header-art{
    z-index:1;
}

.header-needle{
    z-index:2;
}

.hero-image::after{
    z-index:1;
}

.header-needle {
    position: absolute;

    width: 6.3%;

    top: 21%;
    left: 48%;

    transform-origin: 50% 65%;
}

@keyframes compassSwing {
    0%   { transform: rotate(-4deg); }
    50%  { transform: rotate(4deg); }
    100% { transform: rotate(-4deg); }
}

.header-needle {
    animation: compassSwing 5s ease-in-out infinite;
}

.header-art {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events:none;
}

.header-art {
    opacity: .25;
}

nav a {
    color: white;
    text-decoration: none;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: #df1802;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-links a,
.footer-legal a {
    transition: color .25s ease;
}

a:focus,
button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 3px;
}