/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #f4f4f4; /* Light gray background */
    background-size: cover;
    text-align: center;
    position: relative;
}



header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
}

.back-to-main {
    text-align: center;
    margin-top: 10px;
    font-size: 1em;
}

.back-to-main a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.back-to-main a:hover {
    text-decoration: underline;
}

/* Section Styling */
section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 30px auto;
    position: relative;
    z-index: 1;
}

/* Why Choose Biocomicals Section */
.why-choose-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.why-item {
    max-width: 600px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-item h3 {
    font-size: 1.5em;
    color: #333;
}

.why-item p {
    font-size: 1em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-content {
        flex-direction: column;
    }
}
