 /* research and innovation */
 .res-background {
         background-size: cover;
         background-position: center;
         height: 60vh;
         width: 100%;
         position: relative;
         border-radius: 4px;
 }

 .res-background .res-overlay {
         background-color: hsla(212, 84%, 24%, 0.471);
         height: 100%;
         width: 100%;
         display: flex;
         justify-content: center;
         align-items: center;
         padding: 20px;
 }

 .res-background .res-card {
         background: white;
         border-radius: 4px;
         padding: 40px;
         width: 100%;
         max-width: 1000px;
         min-width: 600px;
         text-align: center;
         box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
 }

 .res-background .res-card h1 {
         font-size: 2.5rem;
         color: var(--primary-color);
         margin-bottom: 20px;
 }

 .res-background .res-card p {
         font-size: 1rem;
         color: #333;
         margin-bottom: 30px;
         line-height: 1.6;
 }

 .res-background button {
         background-color: var(--primary-color);
         color: white;
         padding: 12px 24px;
         border: none;
         border-radius: 4px;
         font-size: 1rem;
         cursor: pointer;
         transition: background 0.3s ease;
 }

 .res-background button:hover {
         background-color: hsl(34, 95%, 52%);
 }


 @media (max-width: 1499px) {
         .res-background .res-card {
                 padding: 30px;
         }
 }

 @media (max-width: 1199px) {
         .res-background .res-card {
                 padding: 25px;
                 font-size: 0.95rem;
         }

         .res-background .res-card h1 {
                 font-size: 2rem;
         }
 }

 @media (max-width: 989px) {
         .res-background .res-card {
                 min-width: unset;
                 width: 100%;
                 padding: 20px;
         }

         .res-background .res-card h1 {
                 font-size: 1.8rem;
         }

         .res-background .res-card p {
                 font-size: 0.95rem;
         }

         .res-background button {
                 padding: 10px 20px;
                 font-size: 0.9rem;
         }
 }