body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#0b0b0b;
  color:#f5f5f5;
}

a{color:#d4af37;text-decoration:none}

header, footer{
  background:#000;
}

section{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

h1,h2{
  color:#d4af37;
}

.boxes{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.box{
  background:#111;
  padding:20px;
  border-radius:8px;
}

.contact-box{
  background:#111;
  padding:30px;
  border-radius:8px;
}

footer{
  border-top:1px solid #222;
  margin-top:60px;
  color:#aaa;
  font-size:14px;
}
nav {
  display: flex;
  align-items: center;
}

/* CRITICAL FIX */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 220px;
  border-radius: 6px;
  z-index: 999;
}

/* FORCE VERTICAL STACK */
.dropdown-content a {
  display: block !important;
  width: 100%;
  padding: 10px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown {
  position: relative;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a, .dropdown {
    width: 100%;
    padding: 10px 0;
  }
}
/* MAKE BOXES COMPACT */
.box {
  background:#111;
  padding:12px;              /* ↓ reduced from 20px */
  border-radius:8px;
  font-size:14px;
}

/* CONTROL IMAGE SIZE */
.box img {
  width:100%;
  height:140px;              /* fixed height */
  object-fit:cover;          /* crop nicely */
  border-radius:6px;
  margin-bottom:8px;
}

/* REDUCE TITLE SIZE */
.box h3 {
  font-size:16px;
  margin:5px 0;
}

/* REDUCE TEXT SIZE */
.box p {
  font-size:13px;
  color:#ccc;
  line-height:1.4;
}

/* TIGHT GRID */
.boxes {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); /* smaller cards */
  gap:15px;
}
