.hero {
  width: 100%;
  background: linear-gradient(to left, #ffd28e, #ffecb3);
  padding: 10px 10px 40px 10px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #6b4c4c;
  margin-bottom: 20px;
  text-align: center;
}

.main-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto 10px auto;
  display: block;
}

.hero h1 {
  font-size: 2rem;
  color: #b71c1c;
  margin-bottom: 10px;
}

.hero .cta-btn {
  padding-left: 50px;
  padding-right: 50px;
}

.benefits {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0px auto -40px auto;
  flex-wrap: wrap;
}

.benefit {
  flex: 1;
  min-width: 250px;
  background-color: #fff3e0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit h3 {
  color: #bf360c;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 0.95rem;
  color: #444;
  text-align: center;
}

main section p {
  margin-bottom: 24px;  
}

@media (max-width: 768px) {
  .benefits {
    flex-direction: column;
    align-items: center;
  }
}

.comvseth {
  padding-top: 20px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.market-trends {
  margin-top: -10;
  padding-top: -10;
}

.market-trends-text {
  font-size: 1rem;
  color: #333;
  margin-top: 0px;
}

.notable-sales-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .notable-sales-cards {
    grid-template-columns: 1fr;
  }
}

.sale-card {
  background-color: #fff3e0;              
  padding: 20px;                          
  border-radius: 8px;                    
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); 
  text-align: center;                    
}

.sale-card-domain {
  font-size: 1.25rem;    
  color: #b71c1c;         
  margin-bottom: 8px; 
  text-align: center;    
}

.sale-card-label {
  font-size: 0.95rem;
  color: #444444;       
  margin-bottom: 4px; 
  text-align: center;    
}

.sale-card-price {
  font-size: 1rem;
  font-weight: bold;
  color: #ef6c00;        
  margin: 0;     
  text-align: center;          
}

.brokerage-intro {
  margin-top: 30px;
  font-size: 1rem;
  color: #444;
}

.brokerage-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.brokerage-btn {
  width: 300px; 
  display: inline-block;
  background-color: #ef6c00;
  color: white;
  padding: 1rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}

.brokerage-btn:hover {
  background-color: #e65100;
}

.scroll-banner {
  background: linear-gradient(to left, #ef6c00, #ff9800);
  overflow: hidden;
  padding: 12px 0;
    box-shadow:
    0 -4px 6px -4px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.4);
}

.scroll-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-loop 35s linear infinite;
  font-size: 1rem;
  font-weight: bold;
  color: white;
}

.scroll-content:hover {
  animation-play-state: paused;
}

.scroll-content a {
  color: white;
  text-decoration: none;
  margin: 0 40px;
  display: inline-block;
  transition: color 0.2s;
}

.scroll-content a:hover {
  color: #ffd180;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scroll-content {
    font-size: 0.9rem;
  }

  .scroll-content a {
    margin: 0 20px;
  }
}

body {
  margin: 0;
  padding: 0;
}

.highlighted-section {
  width: 100%;
  background: linear-gradient(to left, #ffecb3, #ffd28e);
  padding: 30px 0 30px 0;
  margin-top: -25px;
  margin-bottom: -10px;
    box-shadow: 
    0 -8px 12px -8px rgba(0, 0, 0, 0.1),  /* ombre vers le haut */
    0 8px 12px -8px rgba(0, 0, 0, 0.1);   /* ombre vers le bas */
}

.inner-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.notable-sales-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .notable-sales-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brokerage-cta {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
  }

  .brokerage-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    min-height: 60px;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
  }
}
