/* Global Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Mukta', sans-serif;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .logo {
    height: 50px;
}

.main-content {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
}

.site-footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.bg-light-orange {
    background-color: #fff2e8 !important;
}

.bg-orange {
    background-color: #c55825 !important;
}
