body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: "Copperplate", Georgia, "Times New Roman", serif;
    line-height: 1.35;
}

a {
    color: #ff4040; /* link color */
}

a:visited {
    color: #cc66ff; /* visited links */
}

h1, h2, h3 {
    font-weight: normal;
    text-align: center;
}

hr {
    width: 760px;
}

.page {
    width: 760px;
    margin-left: auto;
    margin-right: auto;
}

li {
    margin-top: 4px;
    margin-bottom: 4px;
}

.footer {
    font-style: italic;
    text-align: right;
}

.page img.hero-image {
    width: 60%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

h2.red-heading {
    color: #ff4040; /* matches your link color / homepage pillar */
}

h2.green-heading {
    color: #00cc44; /* green pillar */
}

h2.blue-heading {
    color: #3399ff; /* blue pillar */
}

hr.half-hr {
    width: 50%;
    margin: 30px auto; /* space above and below */
    border-color: #e0e0e0; /* light gray */
}

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

.hero-image {
    width: auto;
    max-width: 60%;
    height: auto;
    display: block;
    margin: 20px auto; /* vertical spacing above and below images */
}

hr.half-hr {
    width: 50%;
    margin: 30px auto; /* space above and below */
    border-color: #e0e0e0; /* light gray */
}

section {
    margin-top: 40px;
    margin-bottom: 40px;
}

section p.center-text a {
    display: inline-block;
    margin-top: 10px;
}

hr.quarter-hr {
    width: 15%;
    margin: 20px auto; /* space above and below */
    border-color: #e0e0e0; /* light gray */
}

/* Container keeps the zoomed SVG from overflowing */
.svg-container {
  width: 100%;
  max-width: 800px;   /* adjust as needed */
  margin: 0 auto;     /* center horizontally */
  overflow: hidden;   /* clip the SVG when zoomed */
  position: relative;
}

/* Zoomable SVG */
.zoomable {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
  cursor: zoom-in;
}

/* Scale on hover */
.svg-container:hover .zoomable {
  transform: scale(1.5);   /* adjust zoom factor */
  transform-origin: center center;
}

.svg-container:hover .zoomable {
    transform: scale(1.2);
    transform-origin: center center;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

#motto {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.9em;
    color: #444;
    text-align: right;
    line-height: 1.3;
}

#motto .latin {
    font-style: italic;
}

#motto .hebrew {
    direction: rtl;
    unicode-bidi: isolate;
    font-size: 1.05em;
}