@charset "UTF-8";

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #0b2545;
  transition: background-color 200ms ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navigation.scrolled {
  background-color: #0b2545;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navigation .container {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 24px;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: color 200ms ease;
  white-space: nowrap;
  margin-right: 40px;
}

.logo:hover {
  color: #d2a649;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  flex: 1;
  justify-content: flex-start;
}

.nav-menu li {
  position: relative;
}

.nav-menu li>a {
  display: block;
  padding: 16px 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-menu li>a:hover {
  color: #d2a649;
}

.nav-menu li.has-dropdown>a::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #d2a649;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 16px 24px;
  color: #0b2545;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 200ms ease, color 200ms ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(11, 37, 69, 0.1);
  color: #0b2545;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 24px;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-block .phone-label {
  font-size: 11px;
  color: #d2a649;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-block .phone-number {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: color 200ms ease;
  white-space: nowrap;
}

.phone-block .phone-number:hover {
  color: #d2a649;
}

.btn-cta {
  display: inline-block;
  padding: 10px 16px;
  background-color: #d2a649;
  color: #0b2545;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 200ms ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1280px) {
  .navigation {
    height: 70px;
    background-color: #0b2545;
  }

  .navigation .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #0b2545;
    padding: 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
    justify-content: flex-start;
  }

  .nav-menu.active {
    max-height: 100vh;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li>a {
    padding: 24px 16px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(210, 166, 73, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu li a {
    padding: 16px 40px;
    color: #ffffff;
  }

  .dropdown-menu li a:hover {
    background-color: rgba(210, 166, 73, 0.2);
  }

  .phone-block {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-right {
    gap: 16px;
  }
}

@media (min-width: 1281px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-menu li>a {
    padding: 16px 10px;
  }

  .phone-block .phone-label {
    font-size: 14px;
  }

  .phone-block .phone-number {
    font-size: 18px;
  }

  .btn-cta {
    padding: 16px 24px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .navigation .container {
    padding: 0 10px;
  }
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.95) 0%, rgba(11, 37, 69, 0.85) 100%), url("../img/hero/hero-bg.jpg") center center/cover no-repeat;
  color: #ffffff;
  padding: 100px 24px;
  margin-top: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 37, 69, 0.3);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero .hero-headline {
  font-size: 72px;
  font-family: "Georgia", "Times New Roman", serif;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .hero-cta-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero .hero-cta-group .btn {
  padding: 24px 40px;
  font-size: 18px;
  font-weight: 600;
  min-width: 220px;
}

.hero .hero-cta-group .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero .hero-cta-group .btn-primary {
  background-color: #d2a649;
  color: #0b2545;
  border-color: #d2a649;
}

.hero .hero-cta-group .btn-primary:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  color: #0b2545;
}

.hero .hero-cta-group .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero .hero-cta-group .btn-secondary:hover {
  background-color: #ffffff;
  color: #0b2545;
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: auto;
    padding: 60px 16px;
  }

  .hero .hero-headline {
    font-size: 32px;
  }

  .hero .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero .hero-cta-group {
    flex-direction: column;
    gap: 16px;
  }

  .hero .hero-cta-group .btn {
    width: 100%;
    min-width: auto;
    padding: 16px 24px;
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero .hero-headline {
    font-size: 48px;
  }
}

.social-bar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #0b2545;
  border-radius: 25px;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  transition: transform 200ms ease;
}

.social-bar a:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.social-bar a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .social-bar {
    display: none;
  }
}

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.chat-widget .chat-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #0b2545;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-widget .chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.4);
  background: rgb(14.50625, 48.79375, 90.99375);
}

.chat-widget .chat-button:active {
  transform: scale(0.95);
}

.chat-widget .chat-button:focus {
  outline: 3px solid #d2a649;
  outline-offset: 2px;
}

.chat-widget .chat-button svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.chat-modal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 32px);
  height: 600px;
  max-height: calc(100vh - 120px);
  z-index: 1100;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 300ms ease, transform 300ms ease;
}

.chat-modal[hidden] {
  display: none;
}

.chat-modal.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-modal .chat-modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-modal .chat-header-actions {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.chat-modal .chat-new-button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 200ms ease;
}

.chat-modal .chat-new-button:hover {
  background: #f5f6f8;
  color: #d2a649;
}

.chat-modal .chat-new-button:focus {
  outline: 2px solid #d2a649;
  outline-offset: 2px;
}

.chat-modal .chat-close-button {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 200ms ease;
}

.chat-modal .chat-close-button:hover {
  background: #f5f6f8;
  color: #0b2545;
}

.chat-modal .chat-close-button:focus {
  outline: 2px solid #d2a649;
  outline-offset: 2px;
}

.chat-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
}

.chat-header h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 24px;
  color: #0b2545;
  margin: 0;
  padding-right: 40px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #f5f6f8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.chat-message-bubble {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  animation: messageSlideIn 300ms ease ease-out;
}

.chat-message-bubble.client {
  align-self: flex-end;
}

.chat-message-bubble.client .message-content {
  background: #0b2545;
  color: #ffffff;
  border-radius: 18px 18px 4px 18px;
}

.chat-message-bubble.client .message-timestamp {
  text-align: right;
}

.chat-message-bubble.assistant {
  align-self: flex-start;
}

.chat-message-bubble.assistant .message-content {
  background: #ffffff;
  color: #333333;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-message-bubble.assistant .message-timestamp {
  text-align: left;
}

.chat-message-bubble .message-content {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chat-message-bubble .message-timestamp {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  padding: 0 4px;
}

.chat-cta-card {
  align-self: flex-start;
  max-width: 100%;
  animation: messageSlideIn 300ms ease ease-out;
}

.chat-cta-card .cta-content {
  background: #ffffff;
  border: 2px solid #d2a649;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chat-cta-card .cta-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 20px;
  color: #0b2545;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.chat-cta-card .cta-description {
  font-size: 16px;
  color: #333333;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.chat-cta-card .cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f5f6f8;
  border-radius: 8px;
}

.chat-cta-card .cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.chat-cta-card .cta-contact-item svg {
  flex-shrink: 0;
  color: #0b2545;
}

.chat-cta-card .cta-contact-item a {
  color: #0b2545;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
}

.chat-cta-card .cta-contact-item a:hover {
  color: #d2a649;
  text-decoration: underline;
}

.chat-cta-card .cta-button {
  width: 100%;
  padding: 12px 24px;
  background: #d2a649;
  color: #0b2545;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-cta-card .cta-button:hover {
  background: rgb(194.186784141, 147.2405286344, 48.013215859);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.chat-cta-card .cta-button:active {
  transform: translateY(0);
}

.chat-cta-card .cta-button:focus {
  outline: 2px solid #0b2545;
  outline-offset: 2px;
}

.chat-cta-card .message-timestamp {
  font-size: 11px;
  color: #64748b;
  margin-top: 8px;
  padding: 0 4px;
}

.chat-input-area {
  padding: 24px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.chat-input-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input-form .chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  transition: border-color 200ms ease;
  outline: none;
}

.chat-input-form .chat-input:focus {
  border-color: #d2a649;
}

.chat-input-form .chat-input::placeholder {
  color: #94a3b8;
}

.chat-input-form .chat-input:disabled {
  background: #f5f6f8;
  cursor: not-allowed;
  opacity: 0.6;
}

.chat-input-form .chat-send-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0b2545;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.chat-input-form .chat-send-button:hover:not(:disabled) {
  background: rgb(16.61, 55.87, 104.19);
  transform: scale(1.05);
}

.chat-input-form .chat-send-button:active:not(:disabled) {
  transform: scale(0.95);
}

.chat-input-form .chat-send-button:focus {
  outline: 2px solid #d2a649;
  outline-offset: 2px;
}

.chat-input-form .chat-send-button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.5;
}

.chat-input-form .chat-send-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chat-loading-indicator {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 80%;
}

.chat-loading-indicator .loading-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-loading-indicator .typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}

.chat-loading-indicator .typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b2545;
  animation: typingDot 1.4s infinite;
}

.chat-loading-indicator .typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.chat-loading-indicator .typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-loading-indicator .typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-loading-indicator .loading-text {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
}

.chat-error-container {
  padding: 16px;
}

.chat-error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 16px;
  animation: messageSlideIn 300ms ease ease-out;
}

.chat-error-message .error-icon {
  flex-shrink: 0;
  color: #dc3545;
}

.chat-error-message .error-icon svg {
  width: 24px;
  height: 24px;
}

.chat-error-message .error-text {
  flex: 1;
  font-size: 14px;
  color: #991b1b;
  line-height: 1.6;
  font-weight: 500;
}

.chat-error-message .error-contact {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #fecaca;
}

.chat-error-message .error-contact p {
  margin: 4px 0;
  font-size: 14px;
  color: #7f1d1d;
}

.chat-error-message .error-contact p:first-child {
  font-weight: 500;
}

.chat-error-message .error-contact a {
  color: #0b2545;
  text-decoration: none;
  font-weight: 600;
}

.chat-error-message .error-contact a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-widget .chat-button {
    width: 56px;
    height: 56px;
  }

  .chat-widget .chat-button svg {
    width: 24px;
    height: 24px;
  }

  .chat-modal {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .chat-modal .chat-modal-content {
    border-radius: 0;
    height: 100%;
  }

  .chat-header {
    padding: 16px 24px;
  }

  .chat-header h3 {
    font-size: 20px;
  }

  .chat-messages {
    padding: 16px;
    gap: 8px;
  }

  .chat-message-bubble {
    max-width: 85%;
  }

  .chat-message-bubble .message-content {
    padding: 10px 14px;
    font-size: 14px;
  }

  .chat-message-bubble .message-timestamp {
    font-size: 10px;
  }

  .chat-cta-card .cta-content {
    padding: 16px;
  }

  .chat-cta-card .cta-title {
    font-size: 16px;
  }

  .chat-cta-card .cta-description {
    font-size: 14px;
  }

  .chat-cta-card .cta-contact-info {
    padding: 8px;
    gap: 8px;
  }

  .chat-cta-card .cta-contact-item {
    font-size: 13px;
  }

  .chat-cta-card .cta-button {
    padding: 14px 20px;
    font-size: 16px;
    min-height: 44px;
  }

  .chat-input-area {
    padding: 16px;
  }

  .chat-input-form {
    gap: 8px;
  }

  .chat-input-form .chat-input {
    padding: 12px 14px;
    font-size: 16px;
  }

  .chat-input-form .chat-send-button {
    width: 44px;
    height: 44px;
  }

  .chat-loading-indicator {
    padding: 10px 14px;
  }

  .chat-loading-indicator .loading-text {
    font-size: 13px;
  }

  .chat-error-message {
    padding: 8px;
    gap: 8px;
  }

  .chat-error-message .error-icon svg {
    width: 20px;
    height: 20px;
  }

  .chat-error-message .error-text {
    font-size: 13px;
  }

  .chat-error-message .error-contact p {
    font-size: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .chat-modal {
    width: 380px;
    height: 550px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .modal,
  .modal-content,
  .chat-message-bubble,
  .chat-cta-card,
  .chat-loading-indicator,
  .chat-error-message {
    animation: none;
    transition: none;
  }

  .typing-indicator span {
    animation: none;
  }
}

@media (prefers-contrast: high) {
  .chat-message-bubble.client .message-content {
    border: 2px solid #ffffff;
  }

  .chat-message-bubble.assistant .message-content {
    border: 2px solid #333333;
  }

  .chat-cta-card .cta-content {
    border-width: 3px;
  }

  .chat-input {
    border-width: 3px;
  }
}

.practice-areas {
  padding: 100px 0;
  background-color: #ffffff;
}

.practice-areas .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.practice-areas h2 {
  text-align: center;
  font-size: 36px;
  color: #0b2545;
  margin-bottom: 16px;
}

.practice-areas .section-intro {
  text-align: center;
  font-size: 18px;
  color: #333333;
  margin-bottom: 60px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
}

@media (min-width: 1400px) {
  .practice-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) and (max-width: 1399px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

.practice-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  max-height: 300px;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #d2a649;
}

.practice-card.expanded {
  max-height: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #d2a649;
  z-index: 10;
}

.practice-card.expanded p {
  -webkit-line-clamp: unset;
  max-height: none;
}

.practice-card .practice-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.practice-card .practice-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.practice-card h3 {
  font-size: 24px;
  color: #0b2545;
  margin-bottom: 16px;
  font-family: "Georgia", "Times New Roman", serif;
  flex-shrink: 0;
}

.practice-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 24px;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-height: 3em;
  /* 2 lines at 1.5 line-height */
}

.practice-card .learn-more {
  color: #d2a649;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.practice-card .learn-more:hover {
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .practice-areas {
    padding: 60px 0;
  }

  .practice-areas h2 {
    font-size: 32px;
  }

  .practice-areas .section-intro {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .practice-card {
    padding: 24px;
  }

  .practice-card h3 {
    font-size: 22px;
  }

  .practice-card p {
    font-size: 14px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about {
  background-color: #ffffff;
  padding: 100px 0;
}

.about h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 36px;
  color: #0b2545;
  text-align: center;
  margin-bottom: 40px;
}

.about .about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
  text-align: left;
}

.about .about-content .learn-more-link {
  display: inline-block;
  color: #d2a649;
  font-weight: 600;
  font-size: 16px;
  margin-top: 16px;
  transition: color 200ms ease;
}

.about .about-content .learn-more-link:hover {
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  text-decoration: underline;
}

.why-choose {
  background-color: #0b2545;
  padding: 100px 0;
}

.why-choose .why-choose-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
}

.why-choose .differentiators h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 40px;
}

.why-choose .differentiators .differentiator-item {
  margin-bottom: 40px;
}

.why-choose .differentiators .differentiator-item h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
}

.why-choose .differentiators .differentiator-item p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-choose .differentiators .differentiator-item .divider {
  width: 60px;
  height: 3px;
  background-color: #d2a649;
  margin-top: 24px;
}

.why-choose .feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.attorney-spotlight {
  background-color: #ffffff;
  padding: 100px 0;
}

.attorney-spotlight .attorney-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
}

.attorney-spotlight .attorney-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.attorney-spotlight .attorney-bio {
  padding: 40px;
}

.attorney-spotlight .attorney-bio h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 36px;
  color: #0b2545;
  margin-bottom: 16px;
}

.attorney-spotlight .attorney-bio .attorney-title {
  font-size: 18px;
  color: #d2a649;
  font-weight: 600;
  margin-bottom: 24px;
}

.attorney-spotlight .attorney-bio p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 24px;
}

.attorney-spotlight .attorney-bio .btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #d2a649;
  color: #0b2545;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 200ms ease;
}

.attorney-spotlight .attorney-bio .btn-linkedin:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact {
  background-color: #0b2545;
  padding: 100px 0;
}

.contact .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact .office-info h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact .office-info .office-intro {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact .office-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact .office-info .info-item .icon {
  color: #d2a649;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact .office-info .info-item .icon svg {
  display: block;
}

.contact .office-info .info-item .info-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact .office-info .info-item .info-text p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.contact .office-info .info-item .info-text a {
  color: #d2a649;
  transition: color 200ms ease;
}

.contact .office-info .info-item .info-text a:hover {
  color: rgb(220.1101321586, 185.9955947137, 113.8898678414);
  text-decoration: underline;
}

.contact .contact-form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact .contact-form-wrapper h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 28px;
  color: #0b2545;
  margin-bottom: 24px;
}

.contact .contact-form-wrapper form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.contact .contact-form-wrapper form .form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: all 200ms ease;
}

.contact .contact-form-wrapper form .form-group input,
.contact .contact-form-wrapper form .form-group textarea,
.contact .contact-form-wrapper form .form-group select {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  border: none;
  border-bottom: 2px solid #ddd;
  background-color: transparent;
  outline: none;
  transition: border-color 200ms ease;
}

.contact .contact-form-wrapper form .form-group input:focus,
.contact .contact-form-wrapper form .form-group textarea:focus,
.contact .contact-form-wrapper form .form-group select:focus {
  border-bottom-color: #d2a649;
}

.contact .contact-form-wrapper form .form-group input:focus~label,
.contact .contact-form-wrapper form .form-group textarea:focus~label,
.contact .contact-form-wrapper form .form-group select:focus~label {
  top: -18px;
  font-size: 14px;
  color: #d2a649;
}

.contact .contact-form-wrapper form .form-group input:not(:placeholder-shown)~label,
.contact .contact-form-wrapper form .form-group input:valid~label,
.contact .contact-form-wrapper form .form-group textarea:not(:placeholder-shown)~label,
.contact .contact-form-wrapper form .form-group textarea:valid~label,
.contact .contact-form-wrapper form .form-group select:not(:placeholder-shown)~label,
.contact .contact-form-wrapper form .form-group select:valid~label {
  top: -18px;
  font-size: 14px;
  color: #0b2545;
}

.contact .contact-form-wrapper form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}

.contact .contact-form-wrapper form .form-group select:not([value=""])~label,
.contact .contact-form-wrapper form .form-group select:focus~label {
  top: -18px;
  font-size: 14px;
  color: #0b2545;
}

.contact .contact-form-wrapper form .form-group textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 20px;
}

.contact .contact-form-wrapper form .form-group .error-message {
  font-size: 14px;
  color: #dc3545;
  margin-top: 8px;
  display: none;
}

.contact .contact-form-wrapper form .form-group .error-message.active {
  display: block;
}

.contact .contact-form-wrapper form .form-group.has-error input,
.contact .contact-form-wrapper form .form-group.has-error textarea,
.contact .contact-form-wrapper form .form-group.has-error select {
  border-bottom-color: #dc3545;
}

.contact .contact-form-wrapper form .form-group.has-error label {
  color: #dc3545;
}

.contact .contact-form-wrapper form .btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease;
}

.contact .contact-form-wrapper form .btn.btn-primary {
  background-color: #d2a649;
  color: #0b2545;
}

.contact .contact-form-wrapper form .btn.btn-primary:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact .contact-form-wrapper form .btn.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.contact .contact-form-wrapper form .consent-checkboxes {
  margin-top: 40px;
  margin-bottom: 24px;
}

.contact .contact-form-wrapper form .consent-checkboxes .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact .contact-form-wrapper form .consent-checkboxes .checkbox-group input[type=checkbox] {
  width: auto;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #d2a649;
  flex-shrink: 0;
  border: 2px solid #ddd;
}

.contact .contact-form-wrapper form .consent-checkboxes .checkbox-group input[type=checkbox]:focus {
  outline: 2px solid #d2a649;
  outline-offset: 2px;
}

.contact .contact-form-wrapper form .consent-checkboxes .checkbox-group label {
  position: static;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  padding: 0;
  top: auto;
  left: auto;
  transition: none;
}

.contact .contact-form-wrapper form .legal-links {
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
}

.contact .contact-form-wrapper form .legal-links a {
  color: #d2a649;
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

.contact .contact-form-wrapper form .legal-links a:hover {
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  text-decoration: underline;
}

.contact .contact-form-wrapper .disclaimer {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.contact .contact-form-wrapper .form-status {
  margin-top: 24px;
  padding: 16px;
  border-radius: 4px;
  display: none;
  text-align: center;
  font-size: 16px;
}

.contact .contact-form-wrapper .form-status.success {
  display: block;
  background-color: rgb(175.1304347826, 235.8695652174, 189);
  color: rgb(20.2898550725, 84.7101449275, 35);
  border: 1px solid #28a745;
}

.contact .contact-form-wrapper .form-status.error {
  display: block;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border: 1px solid #dc3545;
}

.footer {
  background-color: #0b2545;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer .footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.footer .footer-links a {
  color: #d2a649;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer .footer-links a:hover {
  color: rgb(220.1101321586, 185.9955947137, 113.8898678414);
  text-decoration: underline;
}

.footer .footer-links .separator {
  color: #ffffff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal .modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modal .modal-content h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 28px;
  color: #0b2545;
  margin-bottom: 24px;
}

.modal .modal-content form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.modal .modal-content form .form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: all 200ms ease;
}

.modal .modal-content form .form-group input,
.modal .modal-content form .form-group textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  border: none;
  border-bottom: 2px solid #ddd;
  background-color: transparent;
  outline: none;
  transition: border-color 200ms ease;
}

.modal .modal-content form .form-group input:focus,
.modal .modal-content form .form-group textarea:focus {
  border-bottom-color: #d2a649;
}

.modal .modal-content form .form-group input:focus~label,
.modal .modal-content form .form-group textarea:focus~label {
  top: -18px;
  font-size: 14px;
  color: #d2a649;
}

.modal .modal-content form .form-group input:not(:placeholder-shown)~label,
.modal .modal-content form .form-group input:valid~label,
.modal .modal-content form .form-group textarea:not(:placeholder-shown)~label,
.modal .modal-content form .form-group textarea:valid~label {
  top: -18px;
  font-size: 14px;
  color: #0b2545;
}

.modal .modal-content form .form-group textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 20px;
}

.modal .modal-content form .consent-checkboxes {
  margin-top: 40px;
  margin-bottom: 24px;
}

.modal .modal-content form .consent-checkboxes .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.modal .modal-content form .consent-checkboxes .checkbox-group input[type=checkbox] {
  width: auto;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #d2a649;
  flex-shrink: 0;
  border: 2px solid #ddd;
}

.modal .modal-content form .consent-checkboxes .checkbox-group input[type=checkbox]:focus {
  outline: 2px solid #d2a649;
  outline-offset: 2px;
}

.modal .modal-content form .consent-checkboxes .checkbox-group label {
  position: static;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  padding: 0;
  top: auto;
  left: auto;
  transition: none;
}

.modal .modal-content form .legal-links {
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
}

.modal .modal-content form .legal-links a {
  color: #d2a649;
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

.modal .modal-content form .legal-links a:hover {
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  text-decoration: underline;
}

.modal .modal-content form .btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease;
}

.modal .modal-content form .btn.btn-primary {
  background-color: #d2a649;
  color: #0b2545;
}

.modal .modal-content form .btn.btn-primary:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #333333;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.modal .modal-close:hover {
  color: #0b2545;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .about .about-content p {
    font-size: 16px;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-choose .why-choose-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose .differentiators h2 {
    font-size: 28px;
  }

  .why-choose .differentiators .differentiator-item {
    margin-bottom: 24px;
  }

  .why-choose .differentiators .differentiator-item h3 {
    font-size: 20px;
  }

  .attorney-spotlight {
    padding: 60px 0;
  }

  .attorney-spotlight .attorney-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .attorney-spotlight .attorney-bio {
    padding: 24px;
  }

  .attorney-spotlight .attorney-bio h2 {
    font-size: 28px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact .office-info h2 {
    font-size: 28px;
  }

  .contact .office-info .info-item {
    margin-bottom: 16px;
  }

  .contact .contact-form-wrapper {
    padding: 24px;
  }

  .contact .contact-form-wrapper h3 {
    font-size: 24px;
  }

  .contact .contact-form-wrapper form .form-group {
    margin-bottom: 16px;
  }

  .contact .contact-form-wrapper form .consent-checkboxes {
    margin-top: 24px;
  }

  .contact .contact-form-wrapper form .consent-checkboxes .checkbox-group {
    margin-bottom: 16px;
  }

  .contact .contact-form-wrapper form .consent-checkboxes .checkbox-group input[type=checkbox] {
    min-width: 18px;
    height: 18px;
  }

  .contact .contact-form-wrapper form .consent-checkboxes .checkbox-group label {
    font-size: 13px;
  }

  .contact .contact-form-wrapper form .legal-links {
    font-size: 13px;
  }

  .modal .modal-content {
    padding: 24px;
  }

  .modal .modal-content form .consent-checkboxes {
    margin-top: 24px;
  }

  .modal .modal-content form .consent-checkboxes .checkbox-group {
    margin-bottom: 16px;
  }

  .modal .modal-content form .consent-checkboxes .checkbox-group input[type=checkbox] {
    min-width: 18px;
    height: 18px;
  }

  .modal .modal-content form .consent-checkboxes .checkbox-group label {
    font-size: 13px;
  }

  .modal .modal-content form .legal-links {
    font-size: 13px;
  }
}

.hero.legal-page-hero,
.hero.hero-small {
  min-height: auto;
  height: auto;
  max-height: 150px;
  padding: 24px 0;
  background: linear-gradient(135deg, #0b2545 0%, rgb(3.9875, 13.4125, 25.0125) 100%);
}

.hero.legal-page-hero .hero-content,
.hero.hero-small .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero.legal-page-hero .hero-headline,
.hero.hero-small .hero-headline {
  font-size: 32px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {

  .hero.legal-page-hero .hero-headline,
  .hero.hero-small .hero-headline {
    font-size: 24px;
  }
}

.hero.legal-page-hero .hero-subtitle,
.hero.hero-small .hero-subtitle {
  font-size: 13px;
  color: #d2a649;
  font-weight: 500;
  margin-bottom: 0;
}

.legal-content {
  background-color: #ffffff;
  padding: 100px 0;
}

.legal-content .container {
  max-width: 1000px;
}

.legal-content .content-wrapper {
  background-color: #ffffff;
}

.legal-content .legal-section {
  margin-bottom: 60px;
}

.legal-content .legal-section:last-child {
  margin-bottom: 0;
}

.legal-content .legal-section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
  color: #0b2545;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #d2a649;
}

@media (max-width: 768px) {
  .legal-content .legal-section h2 {
    font-size: 28px;
  }
}

.legal-content .legal-section h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 24px;
  color: #0b2545;
  margin-top: 40px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .legal-content .legal-section h3 {
    font-size: 20px;
  }
}

.legal-content .legal-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .legal-content .legal-section p {
    font-size: 15px;
  }
}

.legal-content .legal-section ul {
  margin-left: 40px;
  margin-bottom: 24px;
}

.legal-content .legal-section ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-content .legal-section ul li {
    font-size: 15px;
  }
}

.legal-content .legal-section a {
  color: #d2a649;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-content .legal-section a:hover {
  text-decoration: underline;
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
}

.legal-content .legal-section .contact-info {
  background-color: #f5f6f8;
  padding: 40px;
  border-radius: 8px;
  margin-top: 24px;
}

.legal-content .legal-section .contact-info p {
  margin-bottom: 8px;
}

.legal-content .legal-section .contact-info p:last-child {
  margin-bottom: 0;
}

.legal-content .legal-section .contact-info strong {
  color: #0b2545;
  font-size: 18px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 60px 0;
  }

  .legal-content .container {
    padding: 0 24px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0b2545;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

p {
  margin-bottom: 24px;
}

a {
  color: #d2a649;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #d2a649;
  color: #0b2545;
  border-color: #d2a649;
}

.btn-primary:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  border-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  color: #0b2545;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #0b2545;
}

.btn-cta {
  background-color: #d2a649;
  color: #0b2545;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 200ms ease;
}

.btn-cta:hover {
  background-color: rgb(186.0088105727, 141.0396475771, 45.9911894273);
  color: #0b2545;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 200ms ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #d2a649;
}

textarea {
  resize: vertical;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333333;
}

.form-group .error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.form-group .error-message.active {
  display: block;
}

.staging-banner {
  background-color: #ff9800;
  color: #ffffff;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.staging-banner p {
  margin: 0;
}

.mt-xs {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 40px;
}

.mt-xl {
  margin-top: 60px;
}

.mb-xs {
  margin-bottom: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mb-xl {
  margin-bottom: 60px;
}

.pt-xs {
  padding-top: 8px;
}

.pt-sm {
  padding-top: 16px;
}

.pt-md {
  padding-top: 24px;
}

.pt-lg {
  padding-top: 40px;
}

.pt-xl {
  padding-top: 60px;
}

.pb-xs {
  padding-bottom: 8px;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-md {
  padding-bottom: 24px;
}

.pb-lg {
  padding-bottom: 40px;
}

.pb-xl {
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-serif {
  font-family: "Georgia", "Times New Roman", serif;
}

.text-sans {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.text-navy {
  color: #0b2545;
}

.text-gold {
  color: #d2a649;
}

.text-white {
  color: #ffffff;
}

.text-charcoal {
  color: #333333;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .container {
    padding: 0 16px;
  }
}

/*# sourceMappingURL=styles.css.map */