 .not-found-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-height: 60vh;
     padding: 2rem;
     text-align: center;
 }

 .not-found-title {
     font-size: 6rem;
     font-weight: bold;
     color: var(--primary);
     margin-bottom: 1rem;
     line-height: 1;
 }

 .not-found-subtitle {
     font-size: 1.5rem;
     color: var(--text);
     margin-bottom: 1.5rem;
 }

 .not-found-text {
     color: var(--text);
     margin-bottom: 2rem;
     max-width: 600px;
 }

 .not-found-illustration {
     max-width: 300px;
     margin-bottom: 2rem;
 }

 .not-found-actions {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
     justify-content: center;
 }

 @media (max-width: 768px) {
     .not-found-title {
         font-size: 4rem;
     }

     .not-found-subtitle {
         font-size: 1.25rem;
     }

     .not-found-actions {
         flex-direction: column;
         width: 100%;
     }

 }