/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.order-intro {
    padding: 40px 20px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.order-intro h2 {
    font-size: 2em;
    color: #333;
}

.order-intro p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.payment-methods {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-top: 30px;
}

.payment-methods h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.payment-methods__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-method__item img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.payment-method__item span {
    font-size: 1em;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .order-intro h2 {
        font-size: 1.5em;
    }

    .order-intro p {
        font-size: 1em;
    }

    .payment-methods__container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .order-intro h2 {
        font-size: 1.2em;
    }

    .order-intro p {
        font-size: 0.9em;
    }

    .payment-method__item img {
        max-width: 40px;
    }

    .payment-method__item span {
        font-size: 0.9em;
    }
}
/* Payment Icons */
.payment-method__item img {
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    object-fit: contain; /* Ensure the image scales without distortion */
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .payment-method__item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .payment-method__item img {
        width: 30px;
        height: 30px;
    }
}
/* Pricing Button */
.pricing-btn {
    display: inline-block;
    background-color: #000; /* Black */
    color: #FFF; /* White */
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-btn:hover {
    background-color: #333; /* Darker Black */
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add shadow on hover */
}

/* Centering the Button */
.centered-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
