html{ 
   overflow-x: auto; 
   overflow-y: scroll; 
}
.body {
   width: 800px;
   background-color: #00AAFF;
   font-family: Arial, sans-serif;
   margin: auto;
   border: 10px solid #000AFF;
   border-radius: 15px;
   padding: 30px;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.site-header {
   display: flex; /* use flexbox */
   flex-direction: column; /* stack children vertically */
   align-items: center; /* center horizontally */
   text-align: center; /* centers the text */
   padding: 1rem 0;
   width: 100%;
}

   .site-header .logo {
      max-width: 100%;
      height: 350px;
      margin: auto;
   }

   .site-header .tagline {
      font-size: 1.25rem;
      margin-top: 0.5rem;
      color: #000;
      text-align: center; /* center the text inside */
   }
.toprow{
   display: flex;
   flex-direction: row; /* default, but safe to include */
   width: 100%;
   box-sizing: border-box; /* Include padding in width calculation */
   background:lightblue;
}
.left-column{
   width: 40%;
   background:lightblue;
   box-sizing: border-box; /* Include padding in width calculation */
}
.right-column{
   width: 60%;
   text-align: center;
   background:lightblue;
   box-sizing: border-box; /* Include padding in width calculation */
}
.bottom-row{
   width: 100%; /* Full width under the two columns */
   background-color: #b0b0b0;
   padding: 20px;
   box-sizing: border-box;
}
.slideshow-container{
   width: 100%;
   overflow: hidden;
   margin-left: 0;     /* explicitly stick to the left */
}
.slide{
   display: none;
   width: 100%; /* maybe make 100% */ 
   height: auto; /* maybe make auto */
}
.slide img{
   width: 100%;          /* Stretch to match cell width */
   height: 500px;         /* Force same height */
   object-fit: cover;    /* Crop without distortion */
   display: block;       /* Remove inline gaps */
}
.address{
   position:relative;
   top: 140px; 
   left:5%; 
   width: 275px;
}
.phone{
   position:relative;
   top: 140px; 
   left:37%; 
   width: 180px;
}
.imgtop{
   width: 100%;
   max-width: 800px;
   height: 210px;
}
.imgdivider{
   width: 400px;
   height: 50px;
}
.imgbottom{
   width: 100%;
   display: block;
   margin: 0 auto;
}
.navtable{
   width: 100%;
   border-collapse: collapse;
}
.navtd{
   background-color: #00AAFF;
   min-height: 25px;
}
.navad{
   font-family: Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-style: normal;
   font-weight: normal;
   color: #000000;
}
.links{
   font-family: Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: normal;
   color: #00AAFF;
}
.adbold{
   font-family: Geneva, Arial, Helvetica, sans-serif;
   font-size: 13px;
   font-weight: bold;
   /* text-transform: uppercase; */
   color: #000000;
}
.ad2{
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 16px;
   font-style: normal;
   font-weight: bold;
   color: #00AAFF;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    margin-right: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 2rem;
    cursor: pointer;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

@media (max-width: 768px) {
    .slider-container { height: 250px; }
    .arrow { font-size: 1.5rem; padding: 8px 12px; }
}