

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #bbb;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}.product-details {
    text-align: center;
    max-width: 650px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Adjust the margin-bottom to increase or decrease spacing */
    margin-top: 30px;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 12000%; /* Ensure image responsiveness */
}





.product h2 {
    color: #333;
    margin-bottom: 10px;
}

.product p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.blockoPayBtn,
.product-details .blockoPayBtn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.blockoPayBtn:hover,
.product-details .blockoPayBtn:hover {
    background-color: #0056b3;
}

#loadingMessage {
    display: none;
    color: #333;
    font-size: 16px;
    margin-top: 10px;
    position: relative;
}

#loadingMessage::after {
    content: '...';
    display: inline-block;
    animation: dots 1s infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60% {
        content: '...';
    }
}

footer {
    margin-top: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
    .center-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .welcome-section,
        .latest-news {
            margin-bottom: 20px;
        }

        .latest-news {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .news-item {
            margin-bottom: 20px;
        }

        .news-item h3 {
            color: #333;
            margin-bottom: 10px;
        }

        .news-item p {
            color: #555;
            line-height: 1.6;
        }


        .viewDetailsBtn {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .viewDetailsBtn:hover {
            background-color: #0056b3;
        }


                .faq-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .faq-section {
            margin-bottom: 20px;
        }

        .faq-section h2 {
            color: #333;
            margin-bottom: 10px;
        }

        .faq-question {
            text-align: left;
            margin-bottom: 10px;
        }

        .faq-question h3 {
            color: #007bff;
        }

        .faq-answer {
            text-align: left;
            color: #555;
            margin-bottom: 20px;
        }


                .contact-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .contact-section {
            margin-bottom: 20px;
        }

        .contact-section h2 {
            color: #333;
            margin-bottom: 10px;
        }

        .contact-info {
            text-align: left;
            color: #555;
            margin-bottom: 20px;
        }

        .contact-form {
            text-align: left;
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            color: #333;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        .contact-form button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .contact-form button:hover {
            background-color: #0056b3;
        }