body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 10px;
    color: #000000;
}

.header {
    background: #4b061b;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.header h1 {
    margin: 0;
    font-size: 2em;
    color: #ffffff;
}

.header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

.header img {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 50px;
    width: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

.description {
    font-size: 1.1em;
    margin: 20px 0;
    color: #000000;
    text-align: justify;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4b061b;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 20px 0;
}

.cta:hover {
    background-color: #000000;
}

.fomo {
    font-size: 1em;
    margin: 20px 0;
    color: #4b061b;
}

.services {
    margin: 20px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.3em;
    color: #4b061b;
}

.services ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services li {
    font-size: 1.5em;
    margin: 10px 20px;
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    text-align: left;
    display: flex;
    align-items: center;
    color: #000000;
}

.services li img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.payment {
    margin: 20px 0;
}

.highlighted-text {
    font-size: 1.8em;
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    animation: highlight-animation 1.5s infinite;
}

@keyframes highlight-animation {
    0% { color: #4caf50; }
    50% { color: #ff5722; }
    100% { color: #4caf50; }
}

.original-price {
    font-size: 1.2em;
    color: #555;
    text-decoration: line-through;
    margin-bottom: 10px;
    display: block;
}

.discounted-price {
    font-size: 1.5em;
    color: #ff5722;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.grab-now {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4b061b;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.grab-now:hover {
    background-color: #000000;
}

.additional-info {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

.footer {
    background-color: #4b061b;
    color: #ffffff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.footer p {
    margin: 10px 0;
}

.referral-link {
    display: block;
    margin: 10px 0;
    color: #ff5722;
    text-decoration: none;
    font-size: 1.1em;
}

.social-media {
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icon img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 5px;
}

.social-icon:hover {
    color: #ff5722;
}

.gradient-text {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 3s infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .services li {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5em;
    }

    .services li {
        flex: 1 1 100%;
    }
}
