/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Define font styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Header styles */
header {
    background-color: #006699;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Hero Section styles */
.hero {
    text-align: center;
    padding: 50px 0;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}

.guidance-buttons button {
    background-color: #006699;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 10px;
}

/* Quranic Guidance and Sanatan Dharma Guidance Section styles */
.quranic-guidance, .sanatan-dharma-guidance, .pregnancy-guidance {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.quranic-guidance h2, .sanatan-dharma-guidance h2, .pregnancy-guidance h2 {
    font-size: 1.8rem;
    margin-top: 20px;
}

.quranic-guidance p, .sanatan-dharma-guidance p, .pregnancy-guidance p {
    margin: 10px 0;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.social-media {
    margin-top: 20px;
}

/* Button styles */
button {
    cursor: pointer;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .guidance-buttons button {
        margin: 10px 5px;
    }
}
