
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}
.ayurvedic-title {
    text-decoration: underline;
    
    
    color: rgb(55, 0, 255);
    font-size: 40px; /* Adjust size as needed */
}
.consultation-warning {
    background-color: #fff; /* White background */
    color: #333; /* Text color */
    padding: 20px; /* Padding around the text */
    text-align: center; /* Center the text */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 20px; /* Space below the warning box */
    font-size: 18px; /* Font size for better readability */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin: 20px 0;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Subcategory Box */
.container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}
.consultation-warning {
    background-color: rgb(255, 255, 255); /* Red background */
    color: rgb(255, 0, 0); /* White text color */
    padding: 20px; /* Padding around the text */
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Space below the warning box */
    border-radius: 5px; /* Rounded corners */
}

.subcategory-box {
    display: block; /* Each box takes full width */
    margin: 10px 0; /* Add space between boxes */
    text-align: center; /* Center text inside each box */
}

.subcategory-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.subcategory-box h3 {
    font-size: 24px;
    margin: 10px 0;
}

.subcategory-box p {
    font-size: 16px;
    color: #555;
}

.explore-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #0056b3;
}
@media (max-width: 768px) {
    .subcategory-box {
        width: 95%; /* Make boxes wider on smaller screens */
        max-width: none; /* Remove max-width */
    }
}