* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --main-title-bg-color: #007953;
    --main-title-text-color: #fff;

    --h2-color: #00538C;
    --secondary-color: #FFCC05;
    --text-color: #333;
    --background-color: #fff;
}

html {
    font-size: 20px;
    line-height: 1.5;
    font-family: Poppins, sans-serif;
}

body {
    background: #fff;
    color: #333;
}

h1 {
    font-family: Rubik, sans-serif;
    background-color: var(--main-title-bg-color);
    color: var(--main-title-text-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-family: Rubik, sans-serif;
    color: var(--h2-color);
}

ul {
    margin-left: 1.5rem;
}

.header {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    /* flex-direction: column; */
}

.product-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.main-container {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    margin-bottom: 10px;
    /* color: var(--h2-color); */
}

.section p,
.thank-you p,
.section ul li {
    margin-bottom: 10px;
}

.section ul {
    margin-left: 1.5rem;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-photo {
    width: 80px;
    /* height: 80px; */
    /* border-radius: 50%; */
    border-radius: 30px;
    margin-right: 1rem;
}

.photo-caption {
    /* font-size: 1.2rem; */
    font-weight: bold;
    /* color: #005b4f; */
}

.scam {
    font-weight: bold;
    color: red;
}

.thank-you {
    font-size: 1.2rem;
    /* font-weight: bold; */
    color: #005b4f;
    margin-bottom: 1rem;
    /* text-align: center; */
}

.thank-you h2 {
    font-family: Rubik, sans-serif;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    background-color: var(--main-title-bg-color);
    color: #fff;
    text-align: center;
    /* max-width: 600px; */
}

.thank-you-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    padding: 10px 1rem 140px 1rem;
    font-size: 0.7rem;
    color: #333;
    background-color: #ddd;
}

.check-mark-list {
    list-style-type: none;
    margin-left: -20px;
}

.check-mark-list li {
    position: relative;
    padding-left: 20px;
}

.check-mark-list li::before {
    content: "✔";
    font-weight: bolder;
    /* content: "✅"; */
    color: #28a745;
    position: absolute;
    left: 0;
}

.cons-mark-list {
    list-style-type: none;
    margin-left: -20px;
}

.cons-mark-list li {
    position: relative;
    padding-left: 20px;
}

.cons-mark-list li::before {
    content: "✖";
    font-weight: bolder;
    /* content: "❌"; */
    color: red;
    position: absolute;
    left: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.cta-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-title-bg-color);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.cta-button {
    background-color: #FFCC05;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    /* transform: scale(1.1); */
    animation: pulse 0.6s infinite;
}

.cta-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* ----------------------------------------------------------------------*/
/* BACK TO TOP */

.back-to-top {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: var(--main-title-bg-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--main-title-bg-color);
}

/* ----------------------------------------------------------------------*/


@media (max-width: 768px) {
    html {
        font-size: 18px;
    }

    .header-content {
        flex-direction: column;
    }

    .product-image {
        max-width: 300px;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile-photo {
        margin-bottom: 1rem;
    }
}