html{
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

body{
    margin: auto;
    position: relative;
    left: 0;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    text-align: justify;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

nav{
  background-color: #f8f9fa;
  border-bottom: 2px solid #17a2b8;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.nav-brand{
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: auto;
}

.nav-brand:hover{
  color: #17a2b8;
  text-decoration: none;
}

.nav-links{
  display: flex;
  gap: 15px;
}

nav a{
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav a:hover{
  background-color: #e8f4f8;
  color: #17a2b8;
  text-decoration: none;
}

nav a.active{
  background-color: #17a2b8;
  color: white;
}

.contact-info{
  margin-bottom: 5px;
  margin-top: 0;
  color: #2c3e50;
  font-weight: 300;
}


.column{
  float: left;
  display:inline;
  margin-left:15px;
  font-size: 13px;
  margin-bottom:5px;
  position: relative;
}

.left{
  width: 80%;
}
.right{
  width:9%;
}

@media (max-width: 768px) {
  body{
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
    position: relative;
    left: 0;
  }
  
  .column{
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .left{
    width: 100%;
  }
  
  .right{
    width: 100%;
  }
  
  h1,h2,h3,h4,h5,p,img{
    /* margin-left: 10px; */
    margin-right: 10px;
  }
  
  img{
    width: 50%;
    float:left;
    margin-right:15px;
  }
}

@media (max-width: 480px) {
  body{
    padding: 0 5px;
  }
  
  h1,h2,h3,h4,h5{
    font-size: 18px;
  }
  
  p{
    font-size: 14px;
  }
  
  img{
    width: 80%;
    float: left;
    margin-right: 15px;
  }
}

h1{
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
  /* margin-left: 15px; */
  font-weight: 600;
}

h2{
  font-size: 24px;
  color: hwb(220 35% 64%);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 3px solid #17a2b8;
  /* padding-left: 12px; */
}

h3,h4,h5{
  color: #847f87;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 12px;
  border-left: 3px solid #17a2b8;
}

p{
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
  color: #555;
  line-height: 1.8;
}

img{
    width: 25%;
    border-radius: 12px;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    float: right;
    display: block;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

.title{
  font-style: italic;
  color: #7f8c8d;
}

a:link{
  color: #17a2b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

a:visited{
  color: #138496;
}

a:hover{
  color: #0f7490;
  text-decoration: underline;
}

a:active{
  color: #0d5d77;
}
