.clear-float {
        clear: both;
    }

nav {
    height:30px;
font-size:1em
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #EC2400;
}

.hero {
    background-image: url('/images/suckerme-hero-backdrop-image.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5em;
}

.cta-button {
    display: inline-block;
    background-color: #EC2400;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
}

.about-us, .products, .testimonials, .contact {
    padding: 60px 0;
}

.contact {
    text-align: center;
}


h1 {
    text-align: center;
    font-size: 2.0em;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8em;
}

.custom-line {
    border: none;
    border-top: 2px solid white;
    width: 50%;
    margin: 20px auto;
}

.product-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-item {
    width: 30%;
    text-align: center;
    margin-bottom: 30px;
}

.product-item a {
   color: white;
   text-decoration: none;
}

.product-item a:hover {
   text-decoration: underline;
}

.product-item img {
    width: 100%;
    height: auto;
}

blockquote {
    border-left: 5px solid #EC2400;
    padding-left: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #EC2400;
}

/* Surface Slayer Product Page */
.product-series {
    padding: 60px 0;
    text-align: center;
}

.product-series .title {
    font-size: 2.5em;
    margin-bottom: 40px;
}


.text-box {
    width: 50%;
    float: left;

}

.small-images {
    width: 50%;
    float: left;
}

.small-images img {
    width: 100%;
}

.product-description {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .text-box, .small-images {
        width: 100%;
    }

    .hero h1 {
        font-size: 2em;
    }

    .product-item {
        width: 45%;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .product-series .title {
        font-size: 2em;
    }

    .product-description {
        font-size: 1em;
    }
    .hero {
        padding: 80px 0;
    }
nav {
    
font-size:.8em
}
    .hero h1 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 8px 16px;
    }

    .product-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .small-images {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, auto);
    }

    .product-series .title {
        font-size: 1.8em;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }
}
 @media (max-width: 480px) {
    nav {
        width: 100%; /* Ensure full width */
        display: flex;
        justify-content: center;
        height:40px;


    }

    nav ul {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: center; /* Center items */
        width: 100%;
        flex-direction: row !important; /* Force horizontal layout */
    }

    nav ul li {
        flex: none; /* Prevent flex from making items too big */
        text-align: center;
    }



    nav ul li a {
        display: block;
        padding: 10px 15px; /* Adjust spacing */
        white-space: nowrap; /* Prevent text wrapping */
        font-size: 1.2em;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 1em;
    }

    footer {
        font-size: 0.9em;
    }
 }