/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #2C3E50;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #FFFFFF;
}

.content-wrapper {
    width: 100%;
    max-width: 768px;
}

/* Icon Styles */
.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.walmart-icon {
    width: 64px;
    height: 64px;
}

@media (min-width: 640px) {
    .walmart-icon {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .walmart-icon {
        width: 96px;
        height: 96px;
    }
    
    .icon-container {
        margin-bottom: 4rem;
    }
}

/* Typography */
.headline {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    word-wrap: break-word;
}

@media (min-width: 640px) {
    .headline {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .headline {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .headline {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .headline {
        font-size: 3.75rem;
        margin-bottom: 1rem;
    }
}

.subheadline {
    font-size: 0.875rem;
    text-align: center;
    color: #6C757D;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .subheadline {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .subheadline {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .subheadline {
        font-size: 1.25rem;
        margin-bottom: 4rem;
    }
}

/* Steps Card */
.steps-card {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .steps-card {
        padding: 2rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .steps-card {
        padding: 3rem;
        margin-bottom: 5rem;
    }
}

.steps-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .steps-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .steps-title {
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
    }
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .steps-list {
        gap: 1.5rem;
    }
}

/* Step Item */
.step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .step {
        gap: 1rem;
    }
}

.step-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 640px) {
    .step-icon {
        font-size: 1.5rem;
    }
}

.step-text {
    font-size: 0.875rem;
    color: #2C3E50;
    line-height: 1.5;
    padding-top: 0.125rem;
}

@media (min-width: 640px) {
    .step-text {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .step-text {
        font-size: 1.125rem;
    }
}

/* Qualify Button */
.qualify-btn {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: #28a745;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.qualify-btn:hover {
    background-color: #228838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.qualify-btn:active {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .qualify-btn {
        font-size: 1.25rem;
        padding: 2rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .qualify-btn {
        font-size: 1.375rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .main-container {
        padding: 1.5rem 1rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }
    
    .main-container {
        min-height: auto;
    }
    
    .qualify-btn {
        page-break-inside: avoid;
    }
}
