 /*-------------------------------------------------------------------*/

    .social-section {
      padding: 10px 50px;
      background-color: #cdc6b9;
    }
    
    .social-section h2 {
      text-align: center;
      color: white;
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .social-section {
        padding: 8px 30px;
      }
      
      .social-section h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .social-section h2 {
        font-size: 1.8rem;
      }
      
    }
    
    @media (max-width: 480px) {
      .social-section h2 {
        font-size: 1.5rem;
      }
    }