/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav ul li a.active {
    color: green;
}

/* Breadcrumb */
.breadcrumb {
    margin: 20px;
    font-size: 16px;
}

.breadcrumb .highlight {
    color: green;
    font-weight: bold;
}

/* Content */
.content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    font-size: 32px;
    color: #222;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* Image */
.story-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp-icon img {
    width: 50px;
}


