* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  max-width: 100vw;
  max-height: 100vh;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
    background: #0e1b30;
}


.mf-head-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  color: white;
  font-family: Arial, sans-serif;
  font-size:small;
}

.mf-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mf-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.mf-brand h2 {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 24px);
  line-height: 1.2;
  color: #ffffff;
}

.mf-logo {
  width: clamp(56px, 7vw, 68px);
  height: clamp(56px, 7vw, 68px);
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  flex-shrink: 0;
}

  .home-link{
      color: inherit;
      text-decoration: none;
      
    }
    
.color-skyblue{
  color: rgb(76, 202, 252);
}



.mf-main-content{
background-color: #f7f7f7;  
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 2px 2px;   
}  


main {
  width: 90%;
  margin: auto;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}

.paragraphs-text {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

.paragraphs-heading {
  margin-top: 24px;
  margin-bottom: 12px;
}
h3 + .paragraphs-text {
    text-indent: 2.5em;
}

/* ----------footer----------- */

.site-footer {
  background: #2e2e2e;
  color: #f8f5f5;
  font-size: 0.9rem;
  padding:0 0 8px 0;
}
.footer-container{
    max-width:1120px;
    margin:0 auto 0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:36px;
    padding:10px 24px;
    align-items:start;
}

h4{
  font-size: larger;
}
.footer-brand{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-section {
  flex: 1 1 200px;
  margin: 10px;
}
.footer-section h3 {
  margin-bottom: 0.5em;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
}

.social-icons-links{
    display:flex;
    justify-content: center;
    gap:16px;
    flex-wrap:no-wrap;
}

.social-icons-links a{
    display:flex;
    align-items:center;
    justify-content:center;
}

.svg-icon{
    width:40px;
    height:40px;
    cursor:pointer;
}

@media (max-width: 600px) {
  .footer-container{
    grid-template-columns:1fr;
}
.footer-brand{
    flex-direction:column;
}
  .footer-section {
    text-align: center;
  }
}

.footer-bottom{
  text-align: center;
}