/* ============================
   Colori & Background
============================ */

.bg-forest {
    background-color: #1c563f !important;
    color: #fff;
  }
  
  .bg-moss {
    background-color: #2f7459 !important;
    color: #fff;
  }
  
  .bg-light-warm {
    background-color: #f5f5ef !important;
  }
  
  .text-wood {
    color: #c19a6b !important;
  }
  
  .text-forest {
    color: #1c563f !important;
  }
  
  /* ============================
     Blocchi e layout
  ============================ */
  
  .section-padding {
    padding: 4rem 2rem;
  }
  
  .rounded-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  
  .cta-block {
    background-color: #c19a6b;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
  }
  
  .cta-block a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1c563f;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #2f7459;
    font-weight: 500;
  }
  
  /* ============================
     Utility helpers
  ============================ */
  
  .text-shadow-light {
    text-shadow: 1px 1px 3px rgba(255,255,255,0.7);
  }
  
  .max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #2f7459;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  