/* style.css - Sales Page */
body {
    background-color: #0a0a0a;
    color: #cccccc;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: #111;
    border: 1px solid #333;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
}

header h1 {
    color: #00ffff;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.product-showcase h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-showcase p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

#protocolForm button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: background-color 0.3s, color 0.3s;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

#protocolForm button:hover {
    background-color: #00ffff;
    color: #0a0a0a;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777;
}

.product-showcase img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-showcase, .hero {
    overflow: visible;
}





.product-showcase img {
    margin-left: auto;
    margin-right: auto;
}




.buy-button {
    display: block;
    margin: 40px auto;
    text-align: center;
}




/* Policy links styling */
footer a {
    color: #555;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
}

footer a:hover {
    color: #777;
}

footer p:last-child {
    margin-top: 1rem;
    font-size: 0.7rem;
}

