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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Arial Black', Gadget, sans-serif;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background-color: white;
    color: black;
    padding: 20px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 1.7rem; /* Reduced size */
    margin-bottom: 10px;
}

.hero p {
    font-size: 0.9rem; /* Reduced size */
    font-weight: 300;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 1.8rem; /* Reduced size */
    margin-bottom: 15px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.step {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step h3 {
    color: #27ae60;
    font-size: 1.2rem; /* Reduced size */
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem; /* Reduced size */
    color: #7f8c8d;
}

/* Cashback Tiers Section */
.tiers {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.tiers h2 {
    text-align: center;
    font-size: 1.8rem; /* Reduced size */
    margin-bottom: 15px;
}

.tier-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tier {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tier h3 {
    font-size: 1.1rem; /* Reduced size */
    color: #2c3e50;
    margin-bottom: 8px;
}

.tier p {
    font-size: 0.8rem; /* Reduced size */

}

.top-tier {
    background-color: #27ae60;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Terms Section */
/* Terms Section (Reduced Font Size) */
.terms {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.6rem; /* Reduced font size */
    line-height: 1.4;  /* Reduced line height */
}

.terms h2 {
    text-align: center;
    font-size: 1.3rem; /* Slightly reduced heading size */
    margin-bottom: 15px;
}


.terms ul {
    list-style-type: none;
    padding-left: 0;
}

.terms ul li {
    background-color: #ecf0f1;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.7rem; /* Reduced size */
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    color: #7f8c8d;
    font-size: 0.9rem; /* Reduced size */
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .steps, .tier-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps, .tier-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Logo Styling */
.xhs-logo {
    margin-top: 15px;
    width: 50px; /* Adjust the size of the logo */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
