#menu1 {
  padding: 0;
}

#menu1 .app-menu-hor {
  padding: 1.85714286em 0;
}

#menu1 .logo {
  max-height: 85px;
}

.imagebg a.dropdown-item {
  color: #252525;
}

.imagebg h1 {
  font-weight: 600;
}

[data-overlay="3"]:before {
  opacity: 0.35;
}

/* GDPR Consent Banner Styles */
.myvoice-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  z-index: 9999;
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.myvoice-consent-banner p {
  color: white !important;
  margin: 0;
  font-size: 14px;
}

.myvoice-consent-banner p strong {
  color: white !important;
  font-weight: 600;
}

.myvoice-consent-banner .btn {
  font-size: 12px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.myvoice-consent-banner .d-flex {
  gap: 0.5rem;
}

.myvoice-consent-banner .btn:first-child {
  margin-left: 0;
}

.myvoice-consent-banner .btn-outline-light:hover {
  background-color: white;
  color: #2c3e50;
}

/* Consent Modal Styles */
.myvoice-consent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.myvoice-consent-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.myvoice-consent-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.myvoice-consent-modal-header h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-btn:hover {
  background-color: #f8f9fa;
  color: #666;
}

.myvoice-consent-modal-body {
  padding: 1.5rem;
}

.myvoice-consent-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  text-align: right;
}

.consent-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  background-color: #f8f9fa;
}

.consent-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.consent-category-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.consent-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Toggle Switch Styles */
.consent-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.consent-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.consent-switch input:checked + .consent-slider {
  background-color: #3498db;
}

.consent-switch input:checked + .consent-slider:before {
  transform: translateX(26px);
}

.consent-switch.disabled .consent-slider {
  background-color: #3498db;
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-switch.disabled input {
  cursor: not-allowed;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .myvoice-consent-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
  
  .myvoice-consent-banner .btn {
    display: block;
    width: 100%;
    margin: 0.25rem 0;
  }
  
  .myvoice-consent-modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .consent-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .consent-switch {
    margin-top: 0.5rem;
  }
}

.feature {
  min-height: 275px;
}

.accordion__title {
  font-size: 22px;
}

#cookie-bar {
  background: #EEE !important;
}

#cookie-bar p {
  font-size: 11px;
  background: #EEE;
  color: #333;
  border: 0px solid #FFF;
}

.btn--primary,
.btn--primary:visited {
  background: #E85931 !important;
  border-color: #E85931 !important;
  color: #FFF;
}

.btn--primary {
  background: #E85931 !important;
}

.process-2:before {
  background: #E85931 !important;
}

.process__item:after {
  border: 2px solid #E85931;
}

.left-nav a {
  margin-left: 24px;
}

.bg--dark {
  background: #EEE;
}

.bg--dark:not(.nav-bar):not(.bar) h1,
.bg--dark:not(.nav-bar):not(.bar) h2,
.bg--dark:not(.nav-bar):not(.bar) h3,
.bg--dark:not(.nav-bar):not(.bar) h4,
.bg--dark:not(.nav-bar):not(.bar) h5,
.bg--dark:not(.nav-bar):not(.bar) h6,
.bg--dark:not(.nav-bar):not(.bar) i,
.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text),
.bg--dark:not(.nav-bar):not(.bar) p {
  color: #333;
}

.lead-custom {
  color: #E85931;
}

.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) {
  color: #333;
}

h1,
.h1 {
  color: #E85931;
}

.bg--dark:not(.nav-bar):not(.bar) h2,
.bg--dark:not(.nav-bar) {
  color: #E85931;
}

/* Signup Form Styles */
.signup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  max-width: 400px;
  margin: 0 auto;
  min-height: 100vh;
  justify-content: center;
}

/* Minimal Form Field Styles */
.minimal-form-group {
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
}

.minimal-form-header {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  transition: border-bottom-color 0.3s ease;
  background: transparent;
  padding: 0;
  margin: 0;
}

.minimal-form-header:focus-within {
  border-bottom-color: #CC3E18;
}

.minimal-form-header.error {
  border-bottom-color: #dc3545;
}

.minimal-form-header.valid {
  border-bottom-color: #28a745;
}

.minimal-form-icon {
  color: #CC3E18;
  font-size: 1rem;
  margin-right: 0.75rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.minimal-form-input {
  flex: 1;
  padding: 0.75rem 0;
  padding-right: 2rem;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  font-size: 0.95rem;
  outline: none;
  color: #333;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.minimal-form-input:focus {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
}

.minimal-form-input::placeholder {
  color: #CC3E18;
  font-size: 0.85rem;
  font-weight: 400;
}

.minimal-password-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  padding: 0.25rem;
  flex-shrink: 0;
}

.minimal-password-toggle:hover {
  color: #CC3E18;
}

.minimal-error-message {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
}

/* Override Bootstrap form-control styles that might interfere */
.signup-container .signup-form .minimal-form-input,
.signup-container .signup-form input[type="text"],
.signup-container .signup-form input[type="email"],
.signup-container .signup-form input[type="password"] {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.signup-container .signup-form .minimal-form-input:focus,
.signup-container .signup-form input[type="text"]:focus,
.signup-container .signup-form input[type="email"]:focus,
.signup-container .signup-form input[type="password"]:focus {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.signup-logo {
  margin-bottom: 2rem;
}

/* Additional aggressive overrides to ensure clean underline design */
body .signup-container .signup-form input.minimal-form-input {
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  padding: 0.75rem 0 !important;
  margin: 0 !important;
}

body .signup-container .signup-form input.minimal-form-input:focus {
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  outline: none !important;
}

.signup-logo img {
  max-width: 200px;
  height: auto;
}

.signup-header {
  margin-bottom: 2rem;
  text-align: center;
}

.signup-header h1 {
  color: #333;
  font-size: 1.8rem;
  margin: 0;
}

.signup-form {
  width: 100%;
  max-width: 350px;
}

.input-field {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #CC3E18;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 12px 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #CC3E18;
}

.visibility-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.visibility-toggle:hover {
  color: #CC3E18;
}

.checkbox-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
  background-color: #CC3E18;
  border-color: #CC3E18;
}

.checkbox-container input:checked + .checkmark:after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: #333;
}

.forgot-password-link {
  color: #CC3E18 !important;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

.signup-btn {
  width: 100%;
  background-color: #CC3E18;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.signup-btn:hover:not(.loading) {
  background-color: #b33515;
}

.signup-btn.loading {
  background-color: #8a2e12;
  cursor: not-allowed;
  transform: scale(0.98);
}

.signup-btn.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.signup-footer {
  text-align: center;
  font-size: 0.9rem;
}

.signup-footer span {
  color: #666;
  margin-right: 0.5rem;
}

.login-link {
  color: #CC3E18 !important;
  text-decoration: none;
  font-weight: bold;
}

.login-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .signup-container {
    padding: 1rem 0.5rem;
  }
  
  .signup-logo img {
    max-width: 160px;
  }
  
  .signup-form {
    max-width: 100%;
  }
}

.process-2:before {
  background: #E85931;
}

.garanties .feature {
  background: #FFF !important;
  min-height: auto;
  font-size: 16px;
}

.garanties .row {
  margin-bottom: 32px;
}

.garanties h5 {
  color: #999 !important;
}

.garanties .feature.feature--featured:after {
  background: #999;
}

.suscribe {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.suscribe h3 {
  color: #E85931;
}

.suscribe .row {
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .text-xs-center {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .switchable .row>div[class*='col-']:last-child:not(:only-child) {
    margin-top: 0;
  }
}


.menu-horizontal>li>a,
.menu-horizontal>li>span,
.menu-horizontal>li>.modal-instance>.modal-trigger {
  opacity: 1 !important;
}

.menu-horizontal>li>a:hover,
.menu-horizontal>li>span:hover,
.menu-horizontal>li>.modal-instance>.modal-trigger:hover {
  opacity: 0.7 !important;
}

h5,
.h5 {
  font-weight: 400;
}

.fb_dialog_content iframe {
  min-height: auto;
}

.mobile h2 {
  color: #E85931;
  margin-bottom: 2em;
  font-size: 1.7em;
}

.mobile .lead {
  margin-bottom: 2.5em;
  font-size: 1.2em;
}

section.mobile {
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  footer div.col-xs-6:nth-child(even) {
    padding-left: 15px;
    margin-top: 50px;
  }
}

.myvoice-background-image-holder {
  background-size: contain !important;
  background-color: #F53832 !important;
  background-repeat: no-repeat !important;
}

/* New Top Toolbar Styles */
.top-toolbar {
  height: 95px;
  background: white;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.toolbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.toolbar-logo .logo {
  max-height: 60px;
}

.toolbar-buttons {
  display: flex;
  gap: 1rem;
}

.toolbar-btn {
  background: #f5f5f5;
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toolbar-btn:hover {
  background: #e0e0e0;
  text-decoration: none;
  color: #333;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  background: rgba(248, 74, 28, 0.48);
  color: white;
  margin-top: 10px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-btn {
  background: black;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #333;
  text-decoration: none;
  color: white;
}

/* Comment ça marche Section Styles */
.comment-ca-marche {
  background: white;
  margin-top: 20px;
  padding: 3rem 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.section-title-comment {
  color: #f84a1c;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.title-divider {
  border: none;
  height: 2px;
  background-color: black;
  margin: 1rem 0 3rem 0;
  width: 100%;
}

.step-item {
  padding: 1.5rem 1rem;
  height: 100%;
  position: relative;
  text-align: left;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #333;
}

.step-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  font-weight: bold;
}

.step-description p {
  margin-bottom: 0.75rem;
}

.highlight-text {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.cta-text {
  font-weight: bold;
  color: #333;
}

.cta-text a {
  color: #333;
  font-weight: bold;
  font-size: inherit;
  text-decoration: underline;
}

/* Vertical lines between columns on medium screens and up */
@media (min-width: 768px) {
  .comment-ca-marche .col-md-3:nth-child(n+2) {
    border-left: 2px solid #000;
  }
  
  .comment-ca-marche .step-item {
    min-height: 300px;
  }
}

/* Horizontal lines between columns on small screens */
@media (max-width: 767px) {
  .comment-ca-marche .col-md-3:not(:last-child) {
    border-bottom: 2px solid #000;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .toolbar-container {
    padding: 0 1rem;
  }
  
  .toolbar-buttons {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .toolbar-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .hero-overlay {
    width: 100%;
    background: rgba(248, 74, 28, 0.7);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .comment-ca-marche {
    padding: 2rem 0;
  }
  
  .section-title-comment {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  
  .step-number {
    font-size: 2.5rem;
  }
}

/* Section Top Shadow Utility */
.section-top-shadow {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Partner Benefits Section Styles */
.partenaires-section {
  background: white;
  padding: 4rem 0;
  text-align: center;
}

.partenaires-title {
  color: #E85931;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.partenaires-logos {
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  margin-bottom: 1rem;
}

.partner-logo img {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo img:hover {
  transform: scale(1.05);
}

.partenaires-subtitle {
  color: #E85931;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.partenaires-btn {
  background: black;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

.partenaires-btn:hover {
  background: #333;
  text-decoration: none;
  color: white;
}

/* Responsive adjustments for partner section */
@media (max-width: 768px) {
  .partenaires-section {
    padding: 3rem 0;
  }
  
  .partenaires-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .partner-logo {
    min-height: 150px;
    margin-bottom: 1.5rem;
  }
  
  .partner-logo img {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
  }
  
  .partenaires-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .partenaires-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  background: white;
  padding: 4rem 0;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.testimonials-title {
  color: #E85931;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.testimonials-grid {
  margin-bottom: 5rem;
  justify-content: center;
}

.testimonial-card {
  padding: 2rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-filled {
  background: #E85931;
  color: white;
  border: none;
}

.testimonial-outlined {
  background: white;
  color: #333;
  border: 1px solid #E85931;
}

.testimonial-filled.testimonial-rotate-left {
  transform: rotate(-6deg);
}

.testimonial-filled.testimonial-rotate-right {
  transform: rotate(6deg);
}

.testimonial-outlined.testimonial-rotate-left {
  transform: rotate(-3deg);
}

.testimonial-outlined.testimonial-rotate-right {
  transform: rotate(3deg);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-attribution {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0;
}

.testimonial-filled .testimonial-attribution {
  color: white;
}

.testimonial-outlined .testimonial-attribution {
  color: #E85931;
}

.testimonials-btn {
  background: black;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

.testimonials-btn:hover {
  background: #333;
  text-decoration: none;
  color: white;
}

/* Responsive adjustments for testimonials section */
@media (max-width: 992px) {
  .testimonials-grid .col-lg-3 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonial-card {
    transform: rotate(0deg) !important;
    padding: 1.5rem 1rem;
    margin: 0.5rem 0;
    min-height: 180px;
  }
  
  .testimonial-card:hover {
    transform: scale(1.02) !important;
  }
  
  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-attribution {
    font-size: 0.85rem;
  }
  
  .testimonials-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Earn Points Section Styles */
.earn-points-section {
  background: white;
  padding: 4rem 0;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.earn-points-title {
  color: #E85931;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.earn-points-grid {
  margin-bottom: 4rem;
}

.earn-points-card {
  padding: 2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.earn-points-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.earn-points-heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.earn-points-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.earn-points-btn {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.earn-points-btn:hover {
  background: #000;
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .earn-points-section {
    padding: 3rem 0;
  }
  
  .earn-points-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .earn-points-grid {
    margin-bottom: 3rem;
  }
  
  .earn-points-card {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
  }
  
  .earn-points-heading {
    font-size: 1.3rem;
    min-height: auto;
  }
  
  .earn-points-image {
    margin-bottom: 1rem;
  }
}

/* About Us Section Styles */
.about-us-section {
  background: white;
  padding: 4rem 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.about-us-section-title {
  color: #E85931;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.about-us-content {
  align-items: center;
}

.about-us-image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.about-us-text {
  padding-left: 2rem;
}

.about-us-title {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-us-emphasis {
  color: #E85931;
  font-weight: 900;
}

.about-us-paragraph {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-us-company {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 3rem 0;
  }
  
  .about-us-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-us-text {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .about-us-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
  .about-us-paragraph {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .about-us-company {
    font-size: 0.85rem;
  }
}
