/* ============================================
   Ridge Asset Management - Main Stylesheet
   Color Scheme: Navy #003366 + Gold #FFD700
   ============================================ */

:root {
  --primary: #003366;
  --primary-dark: #002244;
  --primary-light: #004d99;
  --accent: #FFD700;
  --accent-dark: #e6c200;
  --accent-light: #ffe44d;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 51, 102, 0.2);
  --transition: all 0.3s ease;
  --radius: 12px;
  --nav-height: 80px;
}

/* ===== GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
}

.top-bar a {
  color: var(--accent);
}

.top-bar a:hover {
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 15px rgba(0, 51, 102, 0.1);
  padding: 0 1rem;
  height: var(--nav-height);
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary) !important;
  padding: 10px 0;
}

.navbar-brand img {
  height: 45px;
  margin-right: 10px;
}

.navbar-brand .brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 60%;
}

.navbar .nav-link:hover {
  color: var(--primary) !important;
}

.navbar .nav-link.active {
  color: var(--primary) !important;
}

.navbar .btn-contact {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.navbar .btn-contact:hover {
  background: var(--accent);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #001a33 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.hero-section .hero-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-section h1 .highlight {
  color: var(--accent);
}

.hero-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-section .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-section .hero-stats .stat-item {
  text-align: center;
}

.hero-section .hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.hero-section .hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .badge {
  display: inline-block;
  background: rgba(0, 51, 102, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 51, 102, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background: var(--accent);
  color: var(--primary);
  transform: rotateY(180deg);
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-light);
}

.about-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 30px solid rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.about-content h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-content .about-list {
  list-style: none;
  padding: 0;
}

.about-content .about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-content .about-list li i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 51, 102, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service-card ul li {
  padding: 5px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card ul li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.stats-bar .stat-item {
  text-align: center;
  color: var(--white);
}

.stats-bar .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stats-bar .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.stats-bar .stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.cta-section .btn-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
}

.cta-section .btn-cta:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 51, 102, 0.05);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card .quote-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.5;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 15px;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-card .client-name {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card .client-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-light);
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 51, 102, 0.06);
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  padding: 18px 24px;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 35px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent);
}

.contact-info-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-card .contact-item i {
  font-size: 1.3rem;
  color: var(--accent);
  min-width: 25px;
  margin-top: 3px;
}

.contact-info-card .contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-info-card .contact-item small {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-top: 15px;
}

.page-header .breadcrumb-item {
  color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item a {
  color: var(--accent);
}

.page-header .breadcrumb-item.active {
  color: var(--white);
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-card .team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
}

.team-card .team-body {
  padding: 20px;
}

.team-card .team-body h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.team-card .team-body .team-role {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-card .team-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item .year {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.timeline-item p {
  color: var(--text-muted);
}

/* ===== VALUES ===== */
.value-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-card .value-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--accent);
}

.value-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== POLICY CONTENT ===== */
.policy-content {
  padding: 60px 0;
}

.policy-content h2 {
  color: var(--primary);
  font-weight: 700;
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.policy-content h3 {
  color: var(--primary);
  font-weight: 600;
  margin: 25px 0 12px;
  font-size: 1.25rem;
}

.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-content ul, .policy-content ol {
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-content ul li, .policy-content ol li {
  margin-bottom: 8px;
}

.policy-content .table {
  margin: 20px 0;
}

.policy-content .table thead {
  background: var(--primary);
  color: var(--white);
}

.policy-content .table th {
  font-weight: 600;
  padding: 12px;
}

.policy-content .table td {
  padding: 12px;
  vertical-align: middle;
}

/* ===== INFO BOX ===== */
.info-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 4px solid var(--accent);
  padding: 25px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
}

.info-box h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box p {
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar {
    top: 0;
  }

  .top-bar {
    display: none;
  }

  body {
    padding-top: var(--nav-height);
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .hero-stats {
    gap: 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .navbar .nav-link {
    padding: 12px 16px !important;
  }

  .navbar .btn-contact {
    display: inline-block !important;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 70vh;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .hero-stats {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-section .hero-stats .stat-item {
    flex: 0 0 45%;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .stats-bar .stat-number {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .stats-bar .stat-divider {
    display: none;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 20px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-consent-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.cookie-consent-content .cookie-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

.cookie-consent-content h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.cookie-consent-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.cookie-consent-content p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  min-width: 200px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.cookie-consent-actions .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

@media (max-width: 767px) {
  .cookie-consent-inner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-consent-actions {
    width: 100%;
    min-width: unset;
  }

  .cookie-consent-actions .btn {
    flex: 1;
  }
}
