* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    width: 100%;
    padding: 10px 20px;
}

.top-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.top-bar-left {
    text-align: center;
}

.inventory-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.limited {
    color: #ffea00;
}

.top-bar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-badge {
    height: 52px;
    width: auto;
}

/* Main Content */
.main-container {
    width: 100%;
    background: #fff;
    padding: 50px 20px 30px;
    flex: 1;
}

.content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headline */
.main-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

.underline {
    text-decoration: underline;
}

/* Checklist */
.checklist {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: #27ae60;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.check-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.3;
}

/* CTA */
.cta-section {
    width: 100%;
    margin-bottom: 20px;
}

.cta-button {
    display: block;
    background-color: rgb(214, 31, 44);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    padding: 18px 30px;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button:hover {
    background-color: rgb(180, 20, 35);
}

/* Trustpilot */
.trustpilot {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000;
}

.tp-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.trustpilot-img {
    height: 28px;
    width: auto;
    vertical-align: middle;
}

/* Media Bar */
.media-bar {
    width: 100%;
    background-color: #000;
    height: 140px;
    background-image: url('Images/logos.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Footer Trust */
.footer-trust {
    width: 100%;
    background-color: #e8e8e8;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.norton-img {
    height: 80px;
    width: auto;
}

.disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    max-width: 700px;
    line-height: 1.5;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #e9e9e9;
    border-top: 1px solid #ddd;
    padding: 16px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 6px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.divider {
    color: #333;
    margin: 0 4px;
}

.copyright {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 26px;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        font-size: 22px;
        padding: 15px 20px;
    }

    .check-item p {
        font-size: 17px;
    }

    .trustpilot {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 22px;
    }

    .cta-button {
        font-size: 18px;
    }
}
