* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, Tahoma, Geneva, sans-serif;
}

body {
    background-color: #f4f7f6;  
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#bar {
    background-color: #005b96;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

main {
    
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hospital-name {
    color: #005b96;
    font-size: 28px;
    margin-bottom: 5px;
}

.hospital-name.arabic {
    font-size: 32px; 
    margin-bottom: 10px;
}

.construction-text {
    color: #64748b;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

#site-under-construction {
    opacity: 0.9;
    max-width: 100%;
    height: auto;
}
footer {
    position:relative;
    background-color: #005b96;
    padding: 20px 10px;
    display:flex;
    align-items:center;
    justify-content:center; 
    min-height:120px;
}
#footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 12px;
}

.footer-text {
    color: #e2e8f0;
    font-size: 14px;
    text-align: center;
}
#logo {
  margin-bottom:20px;
}
#facebook {
  margin-left:10px;
  width:35px;
  height:35px;

}
.social-container{
  position:absolute;
  left:30px
}
@media (max-width:600px){
  footer {
    flex-direction:column;
  }
  .social-container {
    position:static;
    /*margin-bottom:15px */
  }
}
