/* Apple-inspired styling */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

h2 {
    font-size: 1.6rem;
}
.box p {
}

h3 {
  font-size: 1.1rem;
}

/* HEADER */
header {
  background: #fff;
  color: #000;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

header h2 {
  margin: 0;
  font-size: 1.6rem;
}

header .logo {
  color: #000;
  text-decoration: none;
}

/* NAV */
nav a {
  color: #999;
  margin-left: 25px;
  text-decoration: none;
  font-size: 1rem;
}

nav a:hover,
.active {
  color: #c40000;
}

/* HERO */
.hero {
  text-align: center;
  margin: 50px 0 40px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.tagline {
  color: #999;
}

/* SECTION TITLES */
.column h2 {
  font-weight: 400;
  color: #c40000;
}

/* MAIN */
main {
  padding: 40px;
  max-width: 1400px;
  margin: auto;
}

/* THREE COLUMNS */
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* BOXES WITH IMAGE PLACEHOLDERS */
.card {
  display: block;
  text-decoration: none;
  margin-bottom: 25px;
}

.box {
    overflow: hidden;
    height: auto;
    border-radius: 16px 16px 0 0;
    background: #f3f3f3;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.caption {
  background: #999;
  color: white;
  padding: 14px 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0 0 16px 16px;
}
.card h3 {
    margin-top: 12px;
    margin-bottom: 25px;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* IMAGE PLACEHOLDER */
.box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #ddd;
}

/* TITLE UNDER IMAGE */
.box h3 {
  margin: 0;
  text-align: center;
}
/* Keeps the holders in a neat row */
.image-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

/* Turns the empty divs into gray layout blocks */
.holder-box {
    width: 32%;
    height: 250px;                 /* Adjust the height to your preference */
    background-color: #e0e0e0;     /* Light gray background color */
    border: 2px dashed #999999;    /* Dashed outline like a blueprint */
    display: flex;
    align-items: center;           /* Centers text horizontally */
    justify-content: center;        /* Centers text vertically */
    color: #666666;
    font-family: sans-serif;
}
.pdf-viewer {
    width: 100%;
    height: 850px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 25px 40px;
  text-align: center;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .three-columns {
    grid-template-columns: 1fr;
  }
}
.container {
    display: flex;       /* This instantly forces the divs side-by-side */
    gap: 20px;          /* Adds clean spacing between the columns */
}

.column {
    flex: 1;            /* Gives both columns equal width */
    padding: 15px;      /* Optional padding for spacing */
}