/* Add Aptos font-face declarations at the top if not present */
@font-face {
  font-family: 'Aptos';
  src: url('fonts/Aptos.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('fonts/Aptos-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('fonts/Aptos-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('fonts/Aptos-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* Font Face Declarations - REMOVED ALL APTOS AND CURSIVE FONTS */

* {
  font-weight: bold !important;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #101010;
  margin: 0;
  min-height: 100vh;
  font-size: 18px;
}
p, li {
  color: #101010;
  font-family: Arial, sans-serif;
  font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
  color: #0047FF;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-align: center;
}
h1 {
  font-size: 2.8em;
}
h2 {
  font-size: 2.2em;
}
h3 {
  font-size: 1.6em;
}
h4 {
  font-size: 1.3em;
}
h5 {
  font-size: 1.1em;
}
h6 {
  font-size: 1em;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 71, 255, 0.10);
  border-bottom: 2px solid #0047FF;
  transition: box-shadow 0.2s;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2em 0 1em 0;
}
.site-logo img {
  height: 48px;
  border-radius: 10px;
  background: #fff;
  padding: 0.2em;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2.2em;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.nav-list li a {
  color: #0047FF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.12em;
  letter-spacing: 1px;
  padding: 0.5em 1.1em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-list li a:hover, .nav-list li a:focus {
  background: #0047FF;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 71, 255, 0.18);
}
main {
  margin-top: 2.5em;
}
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 71, 255, 0.10);
  margin: 3em auto 3em auto;
  padding: 3em 2em 2.5em 2em;
  max-width: 900px;
  border: 1.5px solid #0047FF;
  transition: box-shadow 0.2s;
  position: relative;
}
section:not(:last-child)::after {
  content: '';
  display: block;
  height: 2px;
  width: 60%;
  background: linear-gradient(90deg, transparent, #0047FF 50%, transparent);
  margin: 3em auto 0 auto;
  border-radius: 1px;
}
section:hover {
  box-shadow: 0 8px 48px rgba(0, 71, 255, 0.18);
}
.main-title {
  font-size: 2.8em;
  color: #0047FF;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
  font-weight: 900;
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin: 1.2em 0 1.5em 0;
}
.logo-img {
  height: 70px;
  width: auto;
  border-radius: 10px;
  background: none;
  box-shadow: none;
}
.seal-img {
  height: 80px;
}
.section-img {
  width: 400px;
  max-width: 90vw;
  height: auto;
  border-radius: 14px;
  margin: 1.2em 0 1.5em 0;
  box-shadow: 0 4px 24px rgba(0, 71, 255, 0.15);
  border: 2px solid #0047FF;
}
.subtitle {
  color: #0047FF;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.7em;
}
h2, h3 {
  color: #0047FF;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 700;
}
h3 {
  color: #0047FF;
}
.investment-list {
  display: block;
  text-align: left;
  margin: 1.5em auto 1.5em auto;
  padding-left: 1.5em;
  color: #101010;
  font-size: 1.15em;
  max-width: 600px;
}
.investment-list li {
  margin-bottom: 0.7em;
  position: relative;
  padding-left: 0.7em;
  list-style: none;
}
.investment-list li:before {
  content: '\2022';
  color: #0047FF;
  font-size: 1.3em;
  position: absolute;
  left: -1.1em;
  top: 0.05em;
}
.cta-btn {
  display: inline-block;
  background: #0047FF;
  color: #fff;
  font-weight: 700;
  font-size: 1.15em;
  padding: 0.8em 2.2em;
  border-radius: 8px;
  border: none;
  margin: 2em 0 1em 0;
  box-shadow: 0 2px 8px rgba(0, 71, 255, 0.13);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #0047FF;
  box-shadow: 0 4px 16px rgba(0, 71, 255, 0.18);
}
.site-footer {
  background: #fff;
  color: #101010;
  text-align: center;
  padding: 2em 0 1em 0;
  margin-top: 3em;
  font-size: 1.08em;
  border-top: 2px solid #0047FF;
}
.site-footer a {
  color: #0047FF;
  text-decoration: underline;
  font-weight: 600;
}
.blue-double-border {
    border: 4px double #0000cc;
    padding: 24px;
    margin: 24px auto;
    max-width: 900px;
    background: #fff;
    box-sizing: border-box;
}

/* Arial Font for All Text - Replaced Aptos and Cursive */
.quoted-text {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
}

.quoted-text-bold {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
}

/* Standardized Text Elements - Replaced Cursive */
.cursive-text {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
}

.cursive-text-bold {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
}

.cursive-text-italic {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
}

.content, .content-text {
  font-size: 18px;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 1000px) {
  .container, section {
    max-width: 98vw;
    padding: 0 0.5em;
  }
  .main-title {
    font-size: 2em;
  }
  .logo-row {
    gap: 1em;
  }
  .section-img {
    width: 98vw;
    max-width: 98vw;
  }
}

@media (max-width: 700px) {
  .header-flex {
    flex-direction: column;
    gap: 0.7em;
  }
  .nav-list {
    flex-wrap: wrap;
    gap: 0.7em;
    justify-content: center;
  }
  .main-title {
    font-size: 1.3em;
  }
  .logo-img {
    height: 40px;
  }
  .seal-img {
    height: 50px;
  }
  section {
    padding: 1.2em 0.5em;
  }
  .img-row {
    flex-direction: row !important;
    gap: 0.7em !important;
    justify-content: center;
    align-items: center;
  }
  .img-row img {
    max-width: 60px !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    height: 32px;
  }
  .logo-img {
    height: 30px;
  }
  .seal-img {
    height: 40px;
  }
  .logo-row {
    gap: 0.6em;
    margin: 0.8em 0 1em 0;
  }
  .nav-list {
    gap: 0.5em;
  }
  .nav-list li a {
    font-size: 0.9em;
    padding: 0.3em 0.6em;
  }
  .main-title {
    font-size: 1.1em;
    letter-spacing: 0.5px;
  }
  section {
    padding: 0.8em 0.3em;
    margin: 1.5em auto 1.5em auto;
    border-radius: 10px;
  }
  .section-img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 8px;
  }
  .container {
    padding: 0 0.3em;
  }
  .img-row {
    flex-direction: row !important;
    gap: 0.7em !important;
    justify-content: center;
    align-items: center;
  }
  .img-row img {
    max-width: 48px !important;
    height: auto !important;
  }
}

@media (max-width: 360px) {
  .site-logo img {
    height: 28px;
  }
  .logo-img {
    height: 25px;
  }
  .seal-img {
    height: 35px;
  }
  .logo-row {
    gap: 0.5em;
    margin: 0.6em 0 0.8em 0;
  }
  .nav-list {
    gap: 0.4em;
  }
  .nav-list li a {
    font-size: 0.8em;
    padding: 0.25em 0.5em;
  }
  .main-title {
    font-size: 1em;
    letter-spacing: 0.3px;
  }
  section {
    padding: 0.6em 0.2em;
    margin: 1.2em auto 1.2em auto;
    border-radius: 8px;
  }
  .section-img {
    width: 99vw;
    max-width: 99vw;
    border-radius: 6px;
  }
  .container {
    padding: 0 0.2em;
  }
}

/* Ultra small devices */
@media (max-width: 320px) {
  .site-logo img {
    height: 24px;
  }
  .logo-img {
    height: 22px;
  }
  .seal-img {
    height: 30px;
  }
  .logo-row {
    gap: 0.4em;
    margin: 0.5em 0 0.7em 0;
  }
  .nav-list {
    gap: 0.3em;
  }
  .nav-list li a {
    font-size: 0.7em;
    padding: 0.2em 0.4em;
  }
  .main-title {
    font-size: 0.9em;
    letter-spacing: 0.2px;
  }
  section {
    padding: 0.5em 0.15em;
    margin: 1em auto 1em auto;
    border-radius: 6px;
  }
  .section-img {
    width: 99.5vw;
    max-width: 99.5vw;
    border-radius: 4px;
  }
  .container {
    padding: 0 0.15em;
  }
  .header-flex {
    gap: 0.5em;
  }
}

/* Watermark Styles */
.watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: rgba(0, 71, 255, 0.3);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .watermark {
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .watermark {
    font-size: 12px;
    bottom: 10px;
    right: 10px;
  }
} 

@media (min-width: 1001px) {
  .site-title, .title {
    font-size: 48px !important;
  }
  .main-title, .about-main-title, .services-main-title, .history-main-title, .contact-main-title {
    font-size: 36px !important;
  }
  .subtitle, .section-title, .group-title, .office-list, .partner-title {
    font-size: 20px !important;
  }
  .partner-with-sully, .building-legacies {
    font-size: 16px !important;
  }
  .quote-text {
    font-size: 14px !important;
  }
  .content, p, li, .content-text {
    font-size: 12px !important;
  }
} 