/* Global Styles */
body {
    background-color: #F4F1FF; /* Soft lavender for a modern touch */
    font-family: 'Inter', sans-serif;
    color: #222; /* Slightly darker for readability */
}

/* Navbar */
.navbar {
    background-color: #4B0082 !important; /* Deep Purple */
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
    color: #FFD700 !important; /* Golden Yellow */
    font-family: 'Merriweather', serif;
}

.navbar-nav .nav-link {
    color: #f0e6ff !important; /* Light purple */
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #FFD700 !important; /* Golden Yellow */
    font-weight: 600;
}

/* Updated Footer */
.footer {
    background-color: #3A006D !important; /* Darker Purple */
    color: white !important;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 16px;
}

.footer a {
    color: #FFD700 !important; /* Golden Yellow Links */
    font-weight: 500;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Content Container */
.content-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
}

/* Flowchart Image */
.flowchart-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.flowchart-image:hover {
    transform: scale(1.02);
}

/* Description */
.description {
    font-size: 20px;
    font-weight: 500;
    color: #222; /* More contrast */
    margin-top: 20px;
    line-height: 1.6;
}
