:root {
  --primary-red: #AD3B41;
  --primary-blue: #1079C2;
  --secondary-beige: #CBA77B;
  --medium-beige: #e8dcc6;
  --light-blue: #EBF7FF;
  --light-beige: #FFFBF4;
  --cream: #F8F4E7;
  --dark-gray: #242424;
  --medium-gray: #707070;
  --light-gray: #969696;
  --text-dark: #000000;
}

/* Base styles */
body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header styles */
.header-modern {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: scale(0.8);
  transform-origin: left center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.8;
}

.logo-etudiants {
  color: var(--primary-red);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-invest {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  color: var(--medium-gray);
  font-size: 11px;
  font-style: italic;
  margin-top: -2px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 700;
  padding: 0.5rem 1rem !important;
  text-decoration: none;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--secondary-beige) !important;
}

.nav-link.dropdown-toggle::after {
  margin-left: 0.5rem;
  font-size: 12px;
}

.btn-contact {
  background-color: var(--secondary-beige);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #b8956b;
  color: white;
  transform: translateY(-1px);
}

/* Mobile Navigation */
.navbar-toggler {
  border: 1px solid var(--secondary-beige);
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(203, 167, 123, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23cba77b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero section */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-search-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.search-dropdown-group {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.search-dropdown {
  flex: 1 1 150px;
  padding: 0.4rem 1.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  max-width: 100%;
  overflow: hidden;
}

.search-dropdown-group > .search-dropdown:first-child {
  flex: 1.5 1 180px;
  min-width: 150px;
}

.search-dropdown:hover {
  background-color: #f8f9fa;
}

.search-dropdown-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.search-dropdown-content {
  font-size: 13px;
  color: var(--medium-gray);
  line-height: 1.2;
}

.btn-opportunities {
  background: linear-gradient(135deg, var(--primary-red), #c94349);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0 3.5rem;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  transition: all 0.3s ease;
  height: 56px;
  box-shadow: 0 4px 15px rgba(173, 59, 65, 0.3);
  transform: translateY(0);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 20px rgba(203, 167, 123, 0.3);
}

.btn-opportunities:hover {
  background: linear-gradient(135deg, #9a333a, var(--primary-red));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173, 59, 65, 0.4);
}

.price-sort-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  color: white;
  font-size: 14px;
}

.sort-label {
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.toggle-switch {
  position: relative;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: block;
  width: 50px;
  height: 24px;
  background-color: var(--secondary-beige);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-label::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-input:checked + .toggle-label::after {
  transform: translateX(26px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.feature-icon {
  font-size: 18px;
}

/* Section styles */
section {
  min-height: auto;
  padding: 4rem 0;
}

.section-subtitle {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.text-beige {
  color: var(--secondary-beige) !important;
}

/* Section backgrounds */
.section-fiscal {
  background-color: var(--light-beige);
}

.section-trust {
  background-color: var(--light-blue);
}

.section-knowledge {
  background-color: var(--cream);
}

.section-programs {
  background-color: var(--light-beige);
}

/* Fiscal section styles */
.fiscal-content {
  padding-right: 2rem;
}

.benefits-list {
  margin: 2rem 0;
}

.benefit-item {
  margin-bottom: 1rem;
}

.benefit-check {
  color: var(--primary-red);
  font-size: 18px;
  font-weight: bold;
  margin-right: 0.75rem;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #9a333a;
  border-color: #9a333a;
  color: white;
  transform: translateY(-1px);
}

/* Modern diagram styles */
.diagram-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.diagram-modern {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.link-line-modern {
  stroke: var(--text-dark);
  stroke-width: 2;
  stroke-dasharray: 6,6;
  opacity: 0.5;
}

.circle-center-modern {
  fill: var(--primary-red);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.circle-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.circle-text-center {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.icon-text {
  font-family: system-ui;
}

/* Trust section styles */
.trust-content {
  padding-left: 2rem;
}

.trust-features {
  margin-top: 2rem;
}

.feature-badge {
  padding: 0.5rem 0;
}

.feature-icon {
  font-size: 16px;
}

/* Knowledge section styles */
.accordion-item {
  background: white;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  background: white !important;
  border: none !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--light-blue) !important;
  color: var(--text-dark) !important;
}

.accordion-body {
  background: white;
  color: var(--medium-gray);
  border-top: 1px solid #eee;
}

/* Service section styles */
.section-services {
  background-color: white;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-height: 50px;
  max-width: 100px;
  object-fit: contain;
}

.service-title {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.service-card-link:hover .service-title {
  color: var(--primary-blue);
}

/* Programs section styles */
.program-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.program-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  font-size: 12px;
  border-radius: 15px;
  font-weight: 500;
}

.badge-location {
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
}

.badge-yield {
  background: white;
  color: black;
}

.badge-sold,
.badge-type {
  background: white;
  color: black;
}

.program-info {
  font-size: 14px;
  flex-grow: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.info-row .label {
  color: var(--medium-gray);
  font-weight: 500;
  flex: 1;
}

.info-row .value {
  color: var(--text-dark);
  font-weight: 500;
  text-align: right;
  flex: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1rem;
}

.btn-outline-beige {
  background: var(--secondary-beige);
  color: white;
  border: 2px solid var(--secondary-beige);
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-beige:hover {
  background: white;
  color: var(--secondary-beige);
  border: 2px solid var(--secondary-beige);
}

.btn-beige {
  background: var(--secondary-beige);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-beige:hover {
  background: #b8956b;
  color: white;
  transform: translateY(-1px);
}

/* Footer styles */
.footer-modern {
  background-color: var(--light-blue);
  color: var(--text-dark);
  padding: 0;
}

.footer-brand .logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand .logo-etudiants {
  color: var(--primary-red);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-brand .logo-invest {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-brand .logo-subtitle {
  color: var(--medium-gray);
  font-size: 11px;
  font-style: italic;
  margin-top: -2px;
}

.footer-title {
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-contact {
  font-size: 14px;
}

.contact-phone {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.contact-email {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon.telegram {
  background-color: var(--primary-red);
  color: white;
}

.social-icon.facebook {
  background-color: var(--primary-blue);
  color: white;
}

.social-icon.twitter {
  background-color: var(--text-dark);
  color: white;
}

.social-icon.linkedin {
  background-color: var(--primary-blue);
  color: white;
}

.social-icon.instagram {
  background-color: var(--primary-red);
  color: white;
}

.social-icon.youtube {
  background-color: var(--primary-red);
  color: white;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sticky pill */
.sticky-pill {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--secondary-beige);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-pill:hover {
  background-color: #b8956b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Dropdown Navigation */
.dropdown-menu {
  background-color: white;
  border-radius: 8px;
  border: none;
  padding: 0.5rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--secondary-beige);
  background-color: transparent;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
  margin-top: 0;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
}

/* Header responsive design */
@media (max-width: 1024px) {
  .header-modern .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .logo {
    transform: scale(0.75);
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
    border: 2px solid var(--secondary-beige);
    padding: 6px 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(203, 167, 123, 0.25);
  }
  
  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }
  
  .header-modern .py-2 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

/* Responsive design */
@media (max-width: 1200px) {
  .search-dropdown-group {
    gap: 0.4rem;
  }
  
  .search-dropdown {
    padding: 0.4rem 1.5rem;
    flex: 1 1 140px;
    min-width: 110px;
  }
  
  .search-dropdown-group > .search-dropdown:first-child {
    flex: 1.5 1 160px;
    min-width: 130px;
  }
  
  .btn-opportunities {
    padding: 0 2.8rem;
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .search-dropdown-group {
    gap: 0.3rem;
  }
  
  .search-dropdown {
    padding: 0.4rem 1.2rem;
    flex: 1 1 130px;
    min-width: 100px;
  }
  
  .search-dropdown-group > .search-dropdown:first-child {
    flex: 1.5 1 150px;
    min-width: 120px;
  }
  
  .search-dropdown-header {
    font-size: 13px;
  }
  
  .btn-opportunities {
    padding: 0 2.5rem;
    font-size: 16px;
    flex: 0 0 auto;
    min-width: 200px;
  }
}

@media (max-width: 900px) {
  .search-dropdown-group {
    justify-content: center;
  }
  
  .search-dropdown {
    flex: 1 1 120px;
    min-width: 90px;
    padding: 0.4rem 1rem;
  }
  
  .search-dropdown-group > .search-dropdown:first-child {
    flex: 1 1 130px;
    min-width: 100px;
  }
  
  .btn-opportunities {
    flex: 0 0 auto;
    min-width: 180px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .fiscal-content,
  .trust-content,
  .role-content,
  .etudiants-content {
    padding-right: 0;
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

  .logo {
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Center images on mobile */
  .trust-content img,
  .role-image img,
  .etudiants-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* Stack accordion items better on mobile */
  .accordion {
    margin-left: 0;
    margin-right: 0;
  }

  .accordion-button {
    font-size: 14px;
    padding: 0.75rem 1rem;
  }

  .accordion-body {
    font-size: 14px;
    padding: 1rem;
  }

  /* Better spacing for feature lists */
  .trust-features .row,
  .role-features {
    justify-content: center;
    text-align: center;
  }

  .role-features > div {
    justify-content: center;
    margin-bottom: 1rem;
  }

  /* Program cards grid */
  .section-programs .row {
    justify-content: center;
  }

  /* Mobile button styling */
  .btn {
    font-size: 14px;
    padding: 0.75rem 1.5rem;
  }

  .btn-lg {
    font-size: 16px;
    padding: 0.875rem 2rem;
  }

  .hero-search-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .search-dropdown-group {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0.8rem;
    width: 100%;
    align-items: stretch;
  }

  .search-dropdown {
    height: auto;
    padding: 0.8rem 1.2rem;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    box-sizing: border-box;
  }
  
  .search-dropdown-group > .search-dropdown:first-child {
    flex: none !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .search-dropdown-header {
    font-size: 14px;
    margin-bottom: 0.3rem;
  }
  
  .search-dropdown-select {
    font-size: 14px;
    padding-top: 0.2rem;
  }
  
  .btn-opportunities {
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding: 0 2rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-search-container {
    margin: 1rem 0;
    padding: 0 0.5rem;
  }

  .search-dropdown-group {
    gap: 0.6rem;
    flex-direction: column !important;
    width: 100% !important;
  }

  .search-dropdown {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .search-dropdown-header {
    font-size: 13px;
    margin-bottom: 0.2rem;
  }

  .search-dropdown-content {
    font-size: 12px;
  }

  .search-dropdown-select {
    font-size: 13px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 0.1rem;
    box-sizing: border-box;
  }

  .btn-opportunities {
    height: 48px;
    font-size: 15px;
    padding: 0 1.5rem;
    margin-top: 0.3rem;
  }

  .program-badges {
    position: static;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    margin: -1rem -1rem 1rem -1rem;
  }

  /* Additional mobile improvements */
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile navigation improvements */
  .logo {
    transform: scale(0.65) !important;
  }

  /* Better mobile spacing */
  .py-4, .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Mobile text adjustments */
  .section-subtitle {
    font-size: 12px;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Mobile button improvements */
  .btn {
    font-size: 13px;
    padding: 0.6rem 1.2rem;
  }

  .btn-lg {
    font-size: 15px;
    padding: 0.75rem 1.5rem;
  }

  /* Feature items mobile */
  .hero-features .feature-item {
    font-size: 12px;
    padding: 0.3rem 0.6rem;
  }

  .feature-icon {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .hero-search-container {
    padding: 0;
  }
  
  .search-dropdown-group {
    gap: 0.5rem;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .search-dropdown {
    padding: 0.5rem 0.8rem;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }
  
  .search-dropdown-header {
    font-size: 12px;
  }
  
  .search-dropdown-select {
    font-size: 12px;
  }
  
  .btn-opportunities {
    height: 46px;
    font-size: 14px;
    padding: 0 1.2rem;
  }

  /* Very small screen adjustments */
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .logo {
    transform: scale(0.6) !important;
  }

  /* Stack hero features vertically */
  .hero-features .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-features .feature-item {
    width: 100%;
    text-align: center;
    padding: 0.4rem;
    font-size: 11px;
  }

  /* Compact spacing */
  .py-4, .py-md-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mb-4, .mb-md-5 {
    margin-bottom: 1.5rem !important;
  }

  .g-4, .g-lg-5 {
    --bs-gutter-y: 1.5rem;
  }
}

@media (max-width: 360px) {
  /* Extra small screens */
  .hero-title {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .btn {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }

  .hero-features .feature-item {
    font-size: 10px;
    padding: 0.3rem;
  }
}

/* Programs En Vente Page Styles */
.programs-page {
  min-height: 100vh;
}

.search-header-section {
  border: 1px solid rgba(0,0,0,0.05);
}

.search-filter-container .search-dropdown-group {
  margin-bottom: 0;
}

.search-filter-container .search-dropdown {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.3rem 1rem;
  border: 1px solid #e9ecef;
  min-width: 150px;
}

.search-filter-container .search-dropdown.flex-fill {
  min-width: 200px;
}

.search-filter-container .search-dropdown-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.search-dropdown-select {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 16px !important;
  padding-right: 32px !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.search-dropdown-select:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Custom search dropdown styling similar to header dropdowns but more compact */
.search-dropdown-select option {
  background: white;
  color: var(--text-dark);
  padding: 6px 12px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.search-dropdown-select option:hover {
  background-color: #f8f9fa;
  color: var(--secondary-beige);
}

.search-dropdown-select::-webkit-scrollbar {
  width: 6px;
}

.search-dropdown-select::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.search-dropdown-select::-webkit-scrollbar-thumb {
  background: var(--secondary-beige);
  border-radius: 3px;
  opacity: 0.7;
}

.search-dropdown-select::-webkit-scrollbar-thumb:hover {
  opacity: 1;
}

.price-sort-container {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.price-sort-container .sort-label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.badge-available {
  background: white;
  color: black;
}

.cta-section {
  padding: 4rem 0;
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 500;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
}

/* Responsive adjustments for en vente page */
@media (max-width: 768px) {
  .search-filter-container .search-dropdown-group {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .search-filter-container .search-dropdown {
    width: 100%;
    min-width: auto;
  }

  .price-sort-container {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .search-header-section {
    padding: 1.5rem;
  }
}

/* Program Detail Page Styles */
/* Program Header */
.program-header {
    background-color: var(--cream) !important;
}

.location-badge {
    background: #d4b485;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
}

.program-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Program Details */
.program-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 160px;
    font-size: 1rem;
}

.detail-badge {
    background: var(--medium-beige);
    color: #000;
    border: 1px solid var(--medium-beige);
    border-radius: 50px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.detail-badge.gestionnaire,
.detail-badge.emplacement {
    background: var(--medium-beige);
    color: #000;
    border: 1px solid var(--medium-beige);
}

.detail-badge.rendement {
    background: var(--medium-beige);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    font-size: 1.05em;
}

.detail-badge.prix,
.detail-badge.price {
    background: linear-gradient(135deg, var(--primary-red), #c94349);
    color: white;
    border: 2px solid var(--primary-red);
    font-weight: 700;
    font-size: 1.25em;
    box-shadow: 0 4px 15px rgba(173, 59, 65, 0.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.detail-link {
    color: #d4b485;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.detail-link:hover {
    color: #b8975e;
}

.arrow-icon {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Program Image */
.program-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.program-main-image,
.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.program-carousel .carousel-inner {
    border-radius: 15px;
}

.custom-indicators {
    bottom: 20px;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255,255,255,0.5);
}

.custom-indicators .active {
    background-color: white;
}

/* Program Badges Above Image */
.program-badges-top {
    display: flex;
    justify-content: flex-start;
}

.badge-group-horizontal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.program-badge {
    background: white;
    color: black;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.program-badge.location-tag,
.program-badge.opportunity-tag,
.program-badge.manager-tag {
    background: white;
    color: black;
}

/* Investment Buttons */
.investment-btn {
    background: #d4b485;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.investment-btn:hover {
    background: #b8975e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 180, 133, 0.4);
}

.investment-btn-mobile {
    background: #d4b485;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.floating-investment-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.investment-btn-floating {
    background: #d4b485;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(212, 180, 133, 0.3);
    transition: all 0.3s ease;
}

.investment-btn-floating:hover {
    background: #b8975e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 180, 133, 0.5);
}

/* Partner Section */
.partner-access {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-login-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.partner-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.partner-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.highlight-text {
    color: #d4b485;
}

.partner-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.partner-input:focus {
    border-color: #d4b485;
    box-shadow: 0 0 0 0.2rem rgba(212, 180, 133, 0.25);
}

.partner-login-btn {
    background: #d4b485;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.partner-login-btn:hover {
    background: #b8975e;
    color: white;
    transform: translateY(-2px);
}

.partner-link {
    color: #d4b485;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-link:hover {
    color: #b8975e;
}

/* Contact Section */
.contact-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
}

.contact-subtitle {
    color: #dc3545;
    font-size: 1.1rem;
}

.contact-title {
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Program Detail Page Mobile Responsive */
@media (max-width: 768px) {
    .program-title {
        font-size: 1.6rem;
    }

    .program-main-image,
    .carousel-item img {
        height: 280px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .detail-label {
        min-width: auto;
        font-size: 0.95rem;
    }

    .program-badges-top {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .badge-group-horizontal {
        justify-content: center;
    }

    .partner-login-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .partner-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .program-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .detail-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .program-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Sold Programs Page Styles */
/* Warning Header */
.sold-warning-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sold-warning-text {
    color: #dc3545;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sold-info-text {
    color: #dc3545;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sold-contact-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sold-contact-btn:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
}

/* Sold Programs Search Section */
.sold-search-header-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #e1f5fe;
}

.sold-search-filter-container {
    width: 100%;
}

.sold-search-dropdown-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.sold-search-dropdown {
    min-width: 180px;
    flex: 0 0 auto;
}

.sold-search-dropdown.flex-fill {
    flex: 1 1 200px;
    min-width: 200px;
}

.sold-search-dropdown-header {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.sold-search-dropdown-select {
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    width: 100%;
    min-height: 45px;
    font-size: 14px;
    color: var(--text-dark);
}

.sold-search-dropdown-select:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

.sold-search-btn {
    background: #1976d2;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sold-search-btn:hover {
    background: #1565c0;
    color: white;
    transform: translateY(-2px);
}

.sold-price-sort-container {
    margin-top: 1rem;
}

.sold-sort-label {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.sold-toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
}

.sold-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sold-toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

.sold-toggle-label:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

.sold-toggle-input:checked + .sold-toggle-label {
    background: #1976d2;
}

.sold-toggle-input:checked + .sold-toggle-label:before {
    transform: translateX(25px);
}

/* Program Cards */
.sold-program-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sold-program-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Badges above image */
.sold-program-badges-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.sold-badge-group-horizontal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.sold-program-badge {
    background: white;
    color: black;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Program Image */
.sold-program-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.sold-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.sold-program-card:hover .sold-card-img {
    transform: scale(1.05);
}

/* Card Content */
.sold-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.sold-program-info {
    margin-top: 1rem;
}

.sold-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.sold-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
    min-width: 80px;
    flex-shrink: 0;
}

.sold-detail-badge {
    background: var(--medium-beige);
    color: #000;
    border: 1px solid var(--medium-beige);
    border-radius: 50px;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.sold-detail-badge.sold-price {
    background: linear-gradient(135deg, var(--primary-red), #c94349);
    color: white;
    border: 2px solid var(--primary-red);
    font-weight: 700;
    font-size: 1.25em;
    box-shadow: 0 4px 15px rgba(173, 59, 65, 0.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.sold-detail-badge.sold-rendement {
    background: var(--medium-beige);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    font-size: 1.05em;
}

.sold-view-btn {
    background: var(--secondary-beige);
    color: white;
    border: 2px solid var(--secondary-beige);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sold-view-btn:hover {
    background: white;
    color: var(--secondary-beige);
    border: 2px solid var(--secondary-beige);
}

.view-btn {
    background: var(--secondary-beige);
    color: white;
    border: 2px solid var(--secondary-beige);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: white;
    color: var(--secondary-beige);
    border: 2px solid var(--secondary-beige);
}

.program-detail-badge {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 0rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.program-detail-badge.gestionnaire,
.program-detail-badge.rendement {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.program-detail-badge.prix,
.program-detail-badge.price {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.sold-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sold-program-info {
    flex-grow: 1;
}

/* Sell etudiants Section */
.sell-etudiants-section {
    background: #f8f9fa !important;
}

.sell-etudiants-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #1976d2;
}

.sell-etudiants-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.sell-etudiants-text {
    color: #555;
    line-height: 1.7;
}

.sell-etudiants-text h5 {
    color: #2c3e50;
    font-weight: 700;
}

.sell-etudiants-btn {
    background: var(--secondary-beige);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sell-etudiants-btn:hover {
    background: #b8975e;
    color: white;
    transform: translateY(-2px);
}

/* Sold Programs Mobile Responsive */
@media (max-width: 768px) {
    .sold-search-dropdown-group {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }

    .sold-search-dropdown {
        min-width: 100% !important;
        width: 100%;
        flex: none !important;
    }

    .sold-search-dropdown.flex-fill {
        flex: none !important;
        min-width: 100% !important;
    }

    .sold-search-btn {
        width: 100%;
        margin-top: 1rem;
    }

    .sold-price-sort-container {
        justify-content: center !important;
        margin-top: 1.5rem;
    }

    .sold-program-badges-top {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .sold-badge-group-horizontal {
        justify-content: center;
    }

    .sold-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .sold-label {
        min-width: auto;
    }

    .sold-detail-badge {
        text-align: left;
    }

    .sell-etudiants-content {
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .sell-etudiants-title {
        font-size: 1.5rem;
    }
}


/* Headline + FAQ rhythm for the Censi-Bouvard board */
.display-title{ font-size: clamp(2rem,4.5vw,3rem); font-weight:700; }
.accent-word{ color: var(--primary-blue); }

.q-title{
  font-weight:700;
  font-size:1.15rem;
  margin:1.2rem 0 .35rem;
}
.faq-card p{ color: var(--medium-gray); }

.benefit-check{
  color: var(--primary-red);
  font-size:14px;
  background:#fff;
  width:24px;height:24px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-right:.75rem;
}

/* CTA tint like your palette */
.cta-card{ background: var(--primary-red); }

/* En bref page styling */
.en-bref-page .display-title{ font-size: clamp(2rem, 4.5vw, 2.6rem); font-weight: 700; }
.en-bref-page .section-subtitle{ text-transform: uppercase; font-size:.9rem; letter-spacing:.05em; color: var(--medium-gray); }



/* Partner Info Section */
.partner-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-info-header h2 {
  color: var(--primary-blue);
  font-weight: 700;
}

.partner-info .card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.partner-info .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.partner-info .card-header {
  border-radius: 12px 12px 0 0 !important;
  background: var(--primary-blue) !important;
  border-bottom: none;
}

.partner-info .info-item {
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.partner-info .info-item:hover {
  border-color: var(--primary-blue);
  background: white !important;
}

.partner-info .document-item {
  transition: all 0.2s ease;
  background: white;
}

.partner-info .document-item:hover {
  border-color: var(--secondary-beige) !important;
  box-shadow: 0 2px 10px rgba(203, 167, 123, 0.2);
}

.partner-info .contact-info {
  border-left: 4px solid var(--primary-blue);
}

/* Enhanced PDF Generation Button */
.partner-info .btn-primary.btn-lg {
  background: linear-gradient(45deg, var(--primary-red), #c94349);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(173, 59, 65, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-info .btn-primary.btn-lg:hover {
  background: linear-gradient(45deg, #9a333a, var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173, 59, 65, 0.4);
}

/* Subtle disconnect button */
.partner-info .btn-outline-secondary {
  background: transparent;
  border-color: #6c757d;
  color: #6c757d;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  transition: all 0.2s ease;
}

.partner-info .btn-outline-secondary:hover {
  background: #6c757d;
  border-color: #6c757d;
  color: white;
}

