:root {
  --brand-blue: #E0E0E0;
  --brand-gold: #c9a13b;
  --light-gray: #f4f4f4;
  --text-gray: #333;
  --max-width: 1200px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-gray);
  background-color: #fff;
  line-height: 1.6;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header & Navigation */
.site-header {
  background-color: var(--brand-blue);
  color: white;
  padding: 1rem 0;
}

.logo img {
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar li {
  position: relative;
}

.navbar a {
  color: #133978;;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 2rem;
  left: 0;
  background-color: white;
  color: var(--text-gray);
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-gray);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Intro Banner */
.intro-banner {
  background-color: var(--light-gray);
  padding: 2rem 0;
}

.intro-banner p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Two Column Section */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.about-snippet {
  flex: 1 1 60%;
}

.bio-image {
  float: left;
  width: 120px;
  height: auto;
  margin: 0 1rem 1rem 0;
  border-radius: 8px;
  display: none;
}

@media (min-width: 768px) {
  .bio-image {
    display: block;
  }
}

.firm-services {
  flex: 1 1 35%;
}

.firm-services h2 {
  margin-top: 0;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.services-list li {
  margin-bottom: 0.5rem;
}

.services-list a {
  font-weight: 600;
  color: var(--brand-gold);
}

.services-list a:hover {
  color: var(--brand-gold);
}

/* Contact Form */
.full-contact-form {
  background-color: #a1bce4;
  padding: 2rem 0;
}

.full-contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.full-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row > div {
  flex: 1;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
}

input,
select,
textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  padding: 0.75rem;
  background-color: var(--brand-blue);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: var(--brand-gold);
  color: #000;
}

.disclaimer {
  font-size: 0.85rem;
  color: #444;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
