body {
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    color: #333;
}


.navbar {
    background-color: #333;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
    color: #c79c3d !important;
    font-family: 'Merriweather', serif;
}

.navbar-nav .nav-link {
    color: #f9f9f9;
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #c79c3d !important;
    font-weight: 600;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 16px;
}

.footer a {
    color: #c79c3d;
    font-weight: 500;
    text-decoration: none;
}

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

.content-container {
     max-width: 1100px;
     margin: auto;
    text-align: center;
    padding: 50px 20px;
}
        
.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 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-top: 20px;
    line-height: 1.6;
}