
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
    --primary-color: #2d6e63;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #6c757d;
    --dark-bg: #333;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* Header Styles */
/* This class is no longer needed */
/*
.header-area {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
*/
.top-nav {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 24px;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
    padding: 15px 0;
    transition: background-color 0.3s ease-in-out;
    border: none;
}

nav.navbar.header--transparent {
    background-color: transparent;
}

nav.navbar.header--solid {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header--hidden {
    transform: translateY(-100%);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.navbar-light .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #ccc !important;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-login {
    background-color: black;
    color: white;
    border: none;
}

.language-selector {
    color: white;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
  position: relative; /* Add this */
  padding: 4rem 0;
  color: white;
  background-size: cover;
  background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: -1;
}

.hero-image { /* Add this new class */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.hero-section .btn-primary {
    background-color: #4A5C5A;
    border-color: #4A5C5A;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
}

/* About/Stats Section */
.section-about-stats {
    padding: 80px 0;
}

.about-stats-title {
    font-family: 'Inter', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-stats-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-stats-link {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.stats-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #4A5C5A;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

/* Section Styles */
.section-title {
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Image Containers */
.img-container {
    border-radius: 50px;
    overflow: hidden;
    height: 250px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Styles */
.feature-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.property-img {
    height: 200px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
}

.property-price {
    font-weight: bold;
    font-size: 18px;
}

/* FAQ Section */
.section-faq {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-faq .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.section-faq .section-subtitle {
  font-size: 18px;
  color: #6c757d;
}

.faq-search-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.faq-search-wrapper {
  position: relative;
  flex-grow: 1;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-search-input {
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 12px 12px 48px;
  background-color: #e9ecef;
  border-radius: 8px;
  font-size: 16px;
}

.faq-filters {
  display: flex;
  margin-left: 16px;
}

.btn-faq-filter {
  border: 1px solid transparent;
  background-color: #e9ecef;
  color: #495057;
  border-radius: 8px;
  padding: 12px 24px;
  margin-left: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-faq-filter.active,
.btn-faq-filter:hover {
  background-color: #4A5C5A;
  color: #fff;
}

.accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background-color: #fff;
  color: #212529;
  font-weight: 600;
  font-size: 18px;
  padding: 24px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #4A5C5A;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  font-size: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);

}

.accordion-collapse {
  border: none;
}

.accordion-body {
  padding: 0 24px 24px;
  background-color: #fff;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Section */
.section-contact {
  padding: 80px 0;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contact-image {
  flex-basis: 40%;
}

.contact-image img {
  width: 100%;
  border-radius: 16px;
}

.contact-form-wrapper {
  flex-basis: 60%;
  background-color: #3F7073;
  color: #fff;
  padding: 48px;
  border-radius: 16px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.contact-info-list li {
  margin-bottom: 16px;
}

.contact-info-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact-info-list svg {
  margin-right: 12px;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}
.final-cta-wrapper {
  background-color: #4A555C; /* Dark grey background */
  color: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  text-align: left;
}

.final-cta-wrapper .contact-title {
  color: #ffffff;
  font-weight: bold;
}

.final-cta-wrapper .contact-description {
  color: #ffffff;
}

.btn-cta {
  background-color: #3F7073; /* Blue color from image */
  color: #ffffff;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cta:hover {
  background-color: #ffffff;
  color: #3F7073;
}

.contact-form .form-control {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
}

.contact-form .form-control::placeholder {
  color: #6c757d;
}

.contact-form .form-check {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.contact-form .form-check-input {
  margin-right: 8px;
}

.contact-form .form-check-label {
  font-size: 14px;
  opacity: 0.9;
}

.contact-form .form-check-label a {
  color: #fff;
  text-decoration: underline;
}

.btn-submit {
  background-color: #97C46F;
  color: #212529;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #82b359;
}

/* Contact Page */
.contact-page-main {
  padding: 80px 0;
}

.contact-page-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-page-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background-color: #3F7073;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.footer-logo .logo-capital {
    font-weight: 400;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.8;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 1;
}

.subscribe-form .input-group {
  display: flex;
}

.subscribe-form .form-control {
  border-radius: 8px 0 0 8px !important;
  border: none;
  padding: 12px 16px;
  background-color: #fff;
  color: #212529;
}

.btn-subscribe {
  background-color: #00bfa5;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 24px;
  font-weight: 700;
}

.footer-contact-info .contact-label {
  margin-bottom: 5px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact-info span {
  font-weight: 500;
  font-size: 14px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  font-size: 14px;
}

.copyright-text {
  margin: 0;
  opacity: 0.8;
}

.footer-bottom-link {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  opacity: 0.8;
}

.footer-bottom-link:hover {
  opacity: 1;
}

.powered-by-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.powered-by-link:hover {
  opacity: 1;
  color: #ffffff;
  text-decoration: none;
}


:root {
    --primary-color: #2d6e63;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #6c757d;
    --dark-bg: #333;
}

/* Remove the old dark bar look and make it transparent over the hero */
.navbar {
    position: fixed;          /* was: absolute */
    top: 0;                   /* was: 24px */
    left: 0;
    width: 100%;
    background: transparent !important;
    padding: 12px 0;          /* slight breathing room */
    box-shadow: none;
    z-index: 1000;
    transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
}
/* Brand (two lines: Canterbury + Capital) */
.navbar-brand {
    color: #fff;
    font-weight: 600;
    line-height: 1.1;
}
.brand-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.brand-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

/* Center nav items with subtle white */
.nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    margin: 0 12px;
}
.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

/* Right actions just like the design */
.btn-contact {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 8px;
    padding: 6px 14px;
}
.btn-contact:hover {
    border-color: #fff;
    color: #fff;
}

.btn-login {
    background: rgba(0,0,0,.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 6px 14px;
}
.btn-login:hover {
    background: rgba(0,0,0,.95);
}

.language-selector {
    color: #fff;
    font-weight: 500;
}

/* Keep your hero dark overlay for readability under the transparent header */
.hero {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
}

/* Optional: the old top white bar is not used now */
.top-nav { display: none; }

/* Make the hamburger visible in both states */
.navbar .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    padding: .25rem .5rem;
}

/* White icon when header is transparent */
.navbar.header--transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dark icon when header is solid (white background) */
.navbar.header--solid .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Optional: border colors for toggler by state */
.navbar.header--transparent .navbar-toggler { border-color: rgba(255,255,255,.35); }
.navbar.header--solid .navbar-toggler { border-color: rgba(0,0,0,.2); }

/* Optional: collapsed menu background for readability on mobile */
.navbar.header--transparent .navbar-collapse.show {
    background: rgba(0,0,0,0.55);
    border-radius: 12px;
    margin-top: 10px;
    padding: 8px;
}
.navbar.header--solid .navbar-collapse.show {
    background: #ffffff;
    border-radius: 12px;
    margin-top: 10px;
    padding: 8px;
}
.navbar.header--hidden { transform: translateY(-100%); }
.navbar.header--transparent { background: transparent !important; box-shadow: none; }
.navbar.header--solid { background: #ffffff !important; box-shadow: 0 6px 18px rgba(0,0,0,.08); }

/* Colors when transparent (over hero) */
.navbar.header--transparent .brand-title { color: #fff; }
.navbar.header--transparent .brand-subtitle { color: rgba(255,255,255,.75); }
.navbar.header--transparent .nav-link { color: rgba(255,255,255,.85) !important; }
.navbar.header--transparent .nav-link:hover { color: #fff !important; }
.navbar.header--transparent .btn-contact {
    background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; border-radius: 8px; padding: 6px 14px;
}
.navbar.header--transparent .btn-contact:hover { border-color: #fff; color: #fff; }
.navbar.header--transparent .btn-login {
    background: rgba(0,0,0,.85); color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 6px 14px;
}
.navbar.header--transparent .language-selector { color: #fff; }

/* Colors when solid (on scroll up) */
.navbar.header--solid .brand-title { color: #222; }
.navbar.header--solid .brand-subtitle { color: #6c757d; }
.navbar.header--solid .nav-link { color: #333 !important; }
.navbar.header--solid .nav-link:hover { color: var(--primary-color) !important; }
.navbar.header--solid .btn-contact {
    background: transparent; border: 1px solid rgba(0,0,0,.2); color: var(--primary-color); border-radius: 8px; padding: 6px 14px;
}
.navbar.header--solid .btn-login {
    background: #000; color: #fff; border: 1px solid rgba(0,0,0,.05); border-radius: 999px; padding: 6px 14px;
}
.navbar.header--solid .language-selector { color: #333; }

/* Brand block */
.navbar-brand { font-weight: 600; line-height: 1.1; }
.brand-title { font-size: 22px; font-weight: 700; letter-spacing: .2px; }
.brand-subtitle { font-size: 12px; display: block; margin-top: 2px; }

/* Ensure hero remains readable under transparent header */
.hero {
    background-size: cover; background-position: center; height: 500px; display: flex; align-items: center; color: #fff;
}

/* Hide legacy white bar if present */
.top-nav { display: none; }

/* Global font: Playfair Display for all content */
:root {
  --bs-body-font-family: "Inter", serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif
}

/* Ensure key components also use Playfair, without breaking icon fonts */
h1, h2, h3, h4, h5, h6,
.navbar, .nav-link, .dropdown-item,
.btn, .form-control, .form-select,
.lead, p, li, a, label, small {
  font-family: 'Inter', sans-serif
}

/* Hero layout fixes: spacing under fixed header, consistent background, responsive image */
.hero {
  /* final background used for hero */

  background-size: cover;
  background-position: center;
  position: relative;

  /* enough space so content isn't under the fixed header */
  padding-top: 140px;     /* adjust if you change navbar height */
  padding-bottom: 120px;

  min-height: 600px;
  display: flex;
  align-items: center;
  color: #fff;
}

/* keep hero content above overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

/* readable, responsive hero title */
.hero h1 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  font-size: 3rem;
}

/* linked hero image sizing */
.hero-image-link img {
  display: block;
  width: 100%;
  max-width: 560px;       /* keeps the card-like image from growing too wide */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* mobile tuning */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 90px;
    min-height: 520px;
  }
  .hero .row {
    text-align: center;
  }
  .hero-image-link img {
    margin-top: 12px;
  }
}

/* Hero: full-screen background that sits behind the fixed header */
.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: calc(var(--nav-height, 72px) + 24px);
    padding-bottom: clamp(48px, 10vh, 120px);
}

/* Hero paragraph */
.hero .hero-text {
    max-width: 620px;
    color: rgba(255,255,255,0.88);
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.6;
}

/* Stats card now inside the hero (no negative overlap) */
.stats-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(120%) blur(10px);
    -webkit-backdrop-filter: saturate(120%) blur(10px);
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    padding: 22px 28px;
    margin-top: 0;                 /* was: -50px; remove overlap */
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 18px 8px;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    color: var(--primary-color);
}
.stat-label {
    font-size: 13px;
    color: #6c757d;
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: calc(var(--nav-height, 72px) + 12px);
        padding-bottom: clamp(40px, 12vh, 100px);
    }
    .stat-item { border-right: none; }
}


/* Hero link-style CTA (force white, no underline in all states) */
.hero .hero-cta,
.hero .hero-cta:link,
.hero .hero-cta:visited {
    color: rgba(255,255,255,0.95) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 6px 0;
    transition: color .2s ease;
}
.hero-cta:hover,
.hero-cta:focus,
.hero-cta:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero .hero-cta:focus-visible {
    outline: 2px solid rgba(255,255,255,0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

.hero .hero-cta .hero-cta-icon {
    font-size: 1.05em;
    transition: transform .2s ease;
}
.hero .hero-cta:hover .hero-cta-icon {
    transform: translateX(4px);
}

/* Bridging Finance Section */
.section-bridging-finance {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #f8f9fa;
}

.bridging-finance-overline {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.bridging-finance-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.bridging-finance-text {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bridging-finance-list-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #181818;
  margin-top: 32px;
  margin-bottom: 16px;
}

.bridging-finance-list {
  list-style: none;
  padding-left: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.bridging-finance-list li {
  padding-left: 20px;
  position: relative;
}

.bridging-finance-list li::before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  position: absolute;
  left: 0;
}

.bridging-finance-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 82px;
  object-fit: cover;
  padding: 8px;
}

/* Opportunity Section */
.section-about {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  background: #ffffff;
  padding: clamp(72px, 8vw, 128px) 0;
  position: relative;
  z-index: 1;
}

.section-about .about-overline {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.section-about .about-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #181818;
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.section-about .about-text {
   font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  max-width: 580px;
  font-weight: 400;
}

.section-about .about-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

.section-about .about-cta,
.section-about .about-cta:link,
.section-about .about-cta:visited {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #6c757d !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 6px 0;
  transition: color .2s ease;
}

.section-about .about-cta:hover,
.section-about .about-cta:focus {
  color: #111 !important;
  text-decoration: none !important;
}

.section-about .about-cta .about-cta-icon {
  transition: transform .2s ease;
}

.section-about .about-cta:hover .about-cta-icon {
  transform: translateX(4px);
}

/* Bridging Finance Section */
.section-opportunity {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #fff;
}

.opportunity-overline {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
}

.opportunity-title {
  font-family: "Inter", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.opportunity-card {
  background-color: #f8f9fa;
  border: 1px solid #f1f1f1;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.07);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0);
}

.opportunity-card--highlight {
  background-color: #497174;
  color: #fff;
  border-color: #497174;
}

.opportunity-card--highlight .opportunity-card-title,
.opportunity-card--highlight .opportunity-card-text,
.opportunity-card--highlight .opportunity-card-link {
  color: #fff;
}

.opportunity-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #f0f4f8;
  color: #003366;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.opportunity-card:hover .opportunity-card-icon {
  background-color: #003366;
  color: #fff;
  transform: translateY(-5px);
}

.opportunity-card--highlight .opportunity-card-icon {
  background-color: #003366;
  color: #fff;
}

.opportunity-card-title {
   font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 12px;
}

.opportunity-card-text {
   font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
  margin-bottom: 24px;
}

.opportunity-card-link {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-weight: 500;
  color: #181818;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.opportunity-card-link .opportunity-card-arrow {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.opportunity-card-link:hover .opportunity-card-arrow {
  transform: translateX(4px);
}

.opportunity-card-link:hover {
  color: #000;
}

.opportunity-card-arrow {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.opportunity-card-link:hover .opportunity-card-arrow {
  transform: translateX(4px);
}

/* Risk Mitigation Section */
.section-risk {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #fff;
}

.risk-overline {
  color: #343a40;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.risk-title {
  font-family: "Inter", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.risk-text {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 450px;
}

.risk-list-title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #181818;
  margin-top: 32px;
  margin-bottom: 16px;
}

.risk-list {
  list-style: none;
  padding-left: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.risk-list li {
  padding-left: 20px;
  position: relative;
}

.risk-list li::before {
  content: "•";
  color: #000;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  position: absolute;
  left: 0;
}

.risk-media {
  min-height: 450px;
}

.risk-media-images {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.risk-media-img-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}

.risk-media-img-small {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 60%;
  height: auto;
  border-radius: 100px;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
  border: 6px solid #fff;
  object-fit: cover;
}

.btn-outline-dark {
    border-color: #adb5bd;
    color: #343a40;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

.btn-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
    border-color: #343a40;
}

.terms-content-section {
    padding: 60px 0;
}

.section-terms {
    margin-bottom: 40px;
}

.terms-details .terms-box {
    border: 1px solid #dee2e6;
    padding: 30px;
    border-radius: 15px;
    background-color: #fff;
}

.terms-details h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.terms-details h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.section-bridging {
    padding: 180px 0 80px; /* Added top padding to account for overlapping stats card */
}

.bridging-text .overline {
    font-weight: 700;
    margin-bottom: 24px;
}

/* Bridging Page Styles */
.bridging-content-section {
    padding: 80px 0;
    
}

.section-bridging-loan {
    margin-bottom: 60px;
}

.section-bridging-loan .section-title {
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
}

.bridging-details {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.bridging-details p {
    margin-bottom: 24px;
}

.bridging-details strong {
    color: #343a40;
}

.product-highlights-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.product-highlights-list {
    list-style: none;
    padding-left: 0;
}

.product-highlights-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.product-highlights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4A5C5A; /* Or your theme color */
    font-size: 20px;
    line-height: 1;
}

/* Commercial Bridging Page Styles */
.bridging-details-commercial {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-top: 40px;
}

.bridging-details-commercial .commercial-section-subtitle {
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #343a40;
}

.bridging-details-commercial .commercial-section-tertiary-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #343a40;
}

.bridging-details-commercial ul {
    list-style: disc;
    padding-left: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background-color: #fff;
    color: #343a40;
    font-weight: 600;
    border-radius: 5px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #4A5C5A;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #fff;
}

/* Custom Modal Styles */
#subscriptionModal .modal-content,
#contactModal .modal-content {
  background-color: #2b3035; /* Dark background like the alert image */
  color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #444;
}

#subscriptionModal .modal-header,
#contactModal .modal-content {
  border-bottom: 1px solid #444;
}

#subscriptionModal .modal-footer,
#contactModal .modal-content {
  border-top: 1px solid #444;
}

#subscriptionModal .btn-primary,
#contactModal .btn-primary {
  background-color: #007bff; /* A standard blue, can be changed */
  border-color: #007bff;
}

#subscriptionModal .btn-primary:hover, #contactModal .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Contact Team Section */
.contact-team-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form-wrapper {
    background-color: #4A5C5A;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    font-family: 'Inter', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-wrapper .form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
}

.contact-team-section .btn-primary {
    background-color: #00bfa5;
    border-color: #00bfa5;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
}

/* Auction Finance Page Styles */
.auction-finance-section {
    padding: 80px 0;
}

.auction-card {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
}

.auction-card img {
    width: 100%;
}

.auction-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 92, 90, 1), rgba(74, 92, 90, 0));
    color: #fff;
    padding: 20px;
    text-align: center;
}

.auction-card-body h5 {
    margin: 0;
    font-weight: 700;
}

/* Case Study Section */
.section-case-study {
  background-color: #f8f9fa;
}

.case-study-overline {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
}

.case-study-card {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px -15px rgba(0, 0, 0, 0.15);
}

.case-study-img-wrapper {
  position: relative;
}

.case-study-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.case-study-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: rgba(34, 34, 34, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.2s ease;
}

.case-study-card:hover .case-study-arrow {
    background-color: rgba(10, 10, 10, 0.4);
}

.case-study-info {
  background-color: var(--primary-color);
  color: #fff;
  padding: 24px;
}

.case-study-location {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.case-study-description {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.case-study-stats {
  display: flex;
  justify-content: space-between;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 13px;
  gap: 16px;
}

.case-study-stats .stat {
  text-align: left;
}

.case-study-stats .stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.case-study-stats .stat-value {
  font-weight: 600;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: calc(var(--nav-height, 72px) + 12px);
        padding-bottom: clamp(40px, 12vh, 100px);
    }
    .stat-item { border-right: none; }
}


/* Hero link-style CTA (force white, no underline in all states) */
.hero .hero-cta,
.hero .hero-cta:link,
.hero .hero-cta:visited {
    color: rgba(255,255,255,0.95) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 6px 0;
    transition: color .2s ease;
}
.hero-cta:hover,
.hero-cta:focus,
.hero-cta:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero .hero-cta:focus-visible {
    outline: 2px solid rgba(255,255,255,0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

.hero .hero-cta .hero-cta-icon {
    font-size: 1.05em;
    transition: transform .2s ease;
}
.hero .hero-cta:hover .hero-cta-icon {
    transform: translateX(4px);
}

/* Bridging Finance Section */
.section-bridging-finance {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #f8f9fa;
}

.bridging-finance-overline {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.bridging-finance-title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.bridging-finance-text {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bridging-finance-list-title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #181818;
  margin-top: 32px;
  margin-bottom: 16px;
}

.bridging-finance-list {
  list-style: none;
  padding-left: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.bridging-finance-list li {
  padding-left: 20px;
  position: relative;
}

.bridging-finance-list li::before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  position: absolute;
  left: 0;
}

.bridging-finance-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 82px;
  object-fit: cover;
  padding: 8px;
}

/* Opportunity Section */
.section-about {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  background: #ffffff;
  padding: clamp(72px, 8vw, 128px) 0;
  position: relative;
  z-index: 1;
}

.section-about .about-overline {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.section-about .about-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #181818;
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.section-about .about-text {
 font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  max-width: 580px;
  font-weight: 400;
}

.section-about .about-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

.section-about .about-cta,
.section-about .about-cta:link,
.section-about .about-cta:visited {
 font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #6c757d !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 6px 0;
  transition: color .2s ease;
}

.section-about .about-cta:hover,
.section-about .about-cta:focus {
  color: #111 !important;
  text-decoration: none !important;
}

.section-about .about-cta .about-cta-icon {
  transition: transform .2s ease;
}

.section-about .about-cta:hover .about-cta-icon {
  transform: translateX(4px);
}

/* Bridging Finance Section */
.section-opportunity {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #fff;
}

.opportunity-overline {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
}

.opportunity-title {
    font-family: "Inter", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.opportunity-card {
  background-color: #f8f9fa;
  border: 1px solid #f1f1f1;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.07);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0);
}

.opportunity-card--highlight {
  background-color: #497174;
  color: #fff;
  border-color: #497174;
}

.opportunity-card--highlight .opportunity-card-title,
.opportunity-card--highlight .opportunity-card-text,
.opportunity-card--highlight .opportunity-card-link {
  color: #fff;
}

.opportunity-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #f0f4f8;
  color: #003366;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.opportunity-card:hover .opportunity-card-icon {
  background-color: #003366;
  color: #fff;
  transform: translateY(-5px);
}

.opportunity-card--highlight .opportunity-card-icon {
  background-color: #003366;
  color: #fff;
}

.opportunity-card-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 12px;
}

.opportunity-card-text {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
  margin-bottom: 24px;
}

.opportunity-card-link {
 font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-weight: 500;
  color: #181818;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.opportunity-card-link .opportunity-card-arrow {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.opportunity-card-link:hover .opportunity-card-arrow {
  transform: translateX(4px);
}

.opportunity-card-link:hover {
  color: #000;
}

.opportunity-card-arrow {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.opportunity-card-link:hover .opportunity-card-arrow {
  transform: translateX(4px);
}

/* Risk Mitigation Section */
.section-risk {
  padding: clamp(72px, 8vw, 128px) 0;
  background-color: #fff;
}

.risk-overline {
  color: #343a40;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.risk-title {
  font-family: "Inter", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.risk-text {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 450px;
}

.risk-list-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #181818;
  margin-top: 32px;
  margin-bottom: 16px;
}

.risk-list {
  list-style: none;
  padding-left: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.risk-list li {
  padding-left: 20px;
  position: relative;
}

.risk-list li::before {
  content: "•";
  color: #000;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  position: absolute;
  left: 0;
}

.risk-media {
  min-height: 450px;
}

.risk-media-images {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.risk-media-img-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}

.risk-media-img-small {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 60%;
  height: auto;
  border-radius: 100px;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
  border: 6px solid #fff;
  object-fit: cover;
}

.btn-outline-dark {
    border-color: #adb5bd;
    color: #343a40;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

.btn-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
    border-color: #343a40;
}