body.main {
  position: relative;
  min-height: 100vh;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #000;
}


.appealsDiv{
    border-radius: 10px;
    background-color: orange;
    font-weight: 700;
    /* width: 50%; */
    padding: 30px;
    height: 100%;
    max-width: 600px; 
}

.col-lg-6.p-5 {
    display: flex;
    align-items: center;   
    justify-content: center; 
}


.LegislationHeader{
    margin: 0 auto !important;
    margin-top: 35px !important;
    font-weight: 700;
    text-align: center;
}

.statementsParagraphs{
    padding: 15px;
    line-height: 2;
}

/* Social Icons */
.socialIcons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none; 
}

.socialIcons:hover {
    background-color: #f58220;
    border-color: #f58220;
    color: #fff !important;

}
.whatsapp-float {   
    position: fixed;   
    bottom: 20px;   
    left: 20px;   
    background-color: #25D366;   
    color: white;   
    border-radius: 50%;   
    padding: 15px 18px;   
    font-size: 28px;   
    z-index: 1000;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);   
    transition: background-color 0.3s ease;   
    text-decoration: none;   
    display: flex;   
    align-items: center;   
    justify-content: center; 
}  

.whatsapp-float:hover {   
    background-color: #1ebe57; 
}


/* ===========================
   NAVBAR STYLES
   =========================== */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(206, 205, 205, 0.5) !important; /* default transparent */
    
}

/* Solid background after scroll */
.navbar.scrolled {
    background-color: rgba(206, 205, 205, 1) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Nav Links */
.navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #f58220 !important;
}

.navbar .nav-link.active {
    font-weight: 800 !important;
    color: #000 !important;
}

 /* Mobile specific adjustments */
        @media (max-width: 767.98px) {
            .service-section {
                font-size: 13px;
            }
            
            .appealsDiv {
                padding: 0.75rem;
                margin-bottom: 1rem;
            }
            
            .appealsDiv h2 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            
            .statementsParagraphs {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }
            
            .col-12 {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 575.98px) {
            .service-section {
                font-size: 12px;
            }
            
            .appealsDiv {
                padding: 0.5rem;
            }
            
            .appealsDiv h2 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }
            
            .statementsParagraphs {
                font-size: 0.75rem;
                line-height: 1.4;
            }
            
            .col-12 {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }
        }