/* General Body Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F3F7FB;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Main Container */
.container {
    max-width: 700px;
    background-color: #FFFFFF;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Header Styling */
.header {
    margin-bottom: 15px;
}

.header h1 {
    font-size: 1.6em;
    color: #1A73E8;
    margin-bottom: 8px;
}

.header p {
    font-size: 1em;
    color: #4A4A4A;
}

/* Requirements Section */
.requirements-section {
    margin-bottom: 15px;
    text-align: left;
}

.requirements-section h2 {
    font-size: 1.2em;
    color: #1A73E8;
    margin-bottom: 8px;
}

.requirements-list {
    list-style-type: none;
    padding: 0;
    font-size: 1em;
    color: #333333;
}

/* How It Works Section */
.cta-section {
    margin-bottom: 15px;
    text-align: left;
}

.cta-section h2 {
    font-size: 1.2em;
    color: #1A73E8;
    margin-bottom: 8px;
}

.how-it-works {
    list-style-type: none;
    padding: 0;
    font-size: 1em;
    color: #333333;
}

.how-it-works li {
    margin-bottom: 5px;
}

/* Gift Card Section */
.gift-card-section {
    margin: 15px 0;
}

.gift-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gift-card {
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease;
}

.gift-card img {
    width: 90px;
    height: auto;
    margin-bottom: 5px;
}

.gift-card p {
    font-size: 0.85em;
    color: #333333;
    font-weight: 600;
}

.options-text {
    font-size: 0.9em;
    color: #4A4A4A;
    margin-top: 5px;
}

/* CTA Image Button */
.cta-button-section {
    margin-top: 10px;
}

.cta-image-button {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-image-button:hover {
    transform: scale(1.05);
}
