* {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;          /* Increase from the browser default (~16px) */
    line-height: 1.7;
    background: #ffc53a;
    color: #222;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
/* HEADER */

.site-header {
    position: relative;
    background: #035d8a;
    padding: 0;
    overflow: hidden;
}

/* Banner */

.site-header > a:first-child {
    display: block;
}

.banner {
    display: block;
    width: 100%;
    height: auto;
}

/* Arabic button */

.arabic-link {
    position: absolute;
    top: 18px;
    right: 20px;

    width: 150px;
    text-align: center;

    background: rgba(255,255,255,.95);
    color: #035d8a;

    font-size: 42px;
    font-weight: bold;
    text-decoration: none;

    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);

    z-index: 10;
}

.arabic-link:hover {
  background: white;
}

/* PAGE LAYOUT */

.page-wrap {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

/* LEFT MENU */

.sidebar {
  background: #ffffe6;
  border: 1px solid #035d8a;
  border-radius: 8px;
  overflow: hidden;
  align-self: start;
}

.sidebar h2 {
  margin: 0;
  padding: 12px;
  background: #006699;
  color: white;
  font-size: 20px;
  text-align: center;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.sidebar a {
  color: #035d8a;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 6px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.sidebar a:hover {
  text-decoration: underline;
  background: #fff7cc;
}

/* MAIN CONTENT */

.content {
  background: #ffffe6;
  border: 1px solid #035d8a;
  border-radius: 8px;
  padding: 28px;
  overflow: hidden;
}

.content h2 {
  text-align: center;
  color: #035d8a;
  margin-top: 0;
  font-size: 1.9rem;
}

.content h3 {
  color: #035d8a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-top: 28px;
  font-size: 1.5rem;
}

.content p {
    font-size: 22px;
    line-height: 1.8;
}

/* IMAGES */

.image-right {
  float: right;
  max-width: 280px;
  width: 40%;
  height: auto;
  margin: 8px 0 16px 20px;
  border: 1px solid #ccc;
}

.image-left {
  float: left;
  max-width: 220px;
  width: 35%;
  height: auto;
  margin: 8px 20px 16px 0;
  border: 1px solid #ccc;
}

/* FOOTER */

.site-footer {
  background: #035d8a;
  color: white;
  text-align: center;
  padding: 22px;
  margin-top: 30px;
}

.copyright {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* MOBILE RESPONSIVE */

@media (max-width: 800px) {

  .page-wrap {
    grid-template-columns: 1fr;
    margin: 10px auto;
  }

  /* Default order for normal pages */

  .sidebar {
    order: 1;
  }

  .content {
    order: 2;
    padding: 10px 28px 28px 28px;
  }

  /* Slideshow pages only: show slideshow before menu */

  .slideshow-wrap .slideshow-content {
    order: 1;
  }

  .slideshow-wrap .sidebar {
    order: 2;
  }

  .content h2 {
    margin-top: 0;
    font-size: 2.2rem;
    color: #035d8a;
    text-align: center;
  }

  .content h3 {
    font-size: 1.6rem;
    color: #035d8a;
  }

  .sidebar a {
    font-size: 1.05rem;
  }

  .content p {
    font-size: 1.08rem;
  }
.banner {
    width: 100%;
    height: auto;
}
.arabic-link {
    position: absolute;
    top: 14px;
    right: 14px;
    transform: none;

    display: block;
    width: 95px;
    margin: 0;

    font-size: 28px;
    padding: 8px 0;

    border-radius: 7px;
}

  .slideshow-content {
    padding: 5px 12px 12px 12px;
  }

  .image-right,
  .image-left {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 16px auto;
  }
}