* {
    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;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #e34d4e;
    width: 100%;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.top-bar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

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

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

/* Title row with BBB badge */
.title-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
}

.main-title {
    font-family: 'Times New Roman', TimesNewRoman, Times, Baskerville, Georgia, serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    flex: 1;
}

.bbb-img {
    height: 65px;
    width: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Checklist */
.checklist {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: 100%;
    max-width: 520px;
}

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

.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;
}

/* Alert Box */
.alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 620px;
}

.alert-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.alert-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

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

.cta-button {
    display: block;
    background-color: #4064e9;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    width: 100%;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #3050d0;
}

/* Trustpilot */
.trustpilot {
    text-align: center;
    width: 100%;
}

.reviews-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 4px;
}

.rating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-align: center;
}

/* 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 */
.footer {
    width: 100%;
    background-color: #e9e9e9;
    border-top: 1px solid #ddd;
    padding: 16px 20px;
    text-align: center;
    flex-shrink: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    .top-bar-title {
        font-size: clamp(14px, 4vw, 22px);
    }

    .main-title {
        font-size: 26px;
    }

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

    .alert-box p {
        font-size: 15px;
    }

    .cta-button {
        font-size: 24px;
        padding: 13px 20px;
    }

    .bbb-img {
        height: 45px;
    }
}

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

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

    .media-bar {
        height: 100px;
    }
}
