/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Section */
.header {
    background-color: #fff;
    padding: 20px 0;
}

.gift-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gift-card {
    width: 280px; /* Increased size */
    margin: 20px 0; /* Margin to separate from text */
}

.gift-card-container h1 {
    font-size: 2.5rem;
    color: #333;
}

.gift-card-container p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #666;
}

.cta-button {
    background-color: #00704a;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005f3a;
}

/* How It Works Section */
.how-it-works {
    padding: 20px 0;
    background-color: #fff;
}

.how-it-works h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-wrap: wrap; /* Allows steps to wrap on smaller screens */
    justify-content: center; /* Centering steps horizontally */
    margin-top: 20px; /* Add some space above the steps */
}

.step {
    background-color: #f5f5f5;
    padding: 6px;
    border-radius: 10px;
    font-size: 1.2rem;
	font-weight:400;
    width: 30%; /* Default width for larger screens */
    margin: 10px; /* Space between steps */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .step {
        width: 80%; /* Make steps wider on mobile */
        margin: 10px auto; /* Centering on mobile */
    }
}
.step p {
    color: #666;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.footer p {
    margin: 10px 0;
}

.footer a {
    color: #00704a;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
