 body {
     font-family: 'Inter', sans-serif;
     background-color: #fff;
     color: #000;
     line-height: 1.5;
 }

 /* --- CUSTOM LAYOUT ENGINE --- */
 .margin-top-md {
     margin-top: 24px;
 }

 .margin-bottom-sm {
     margin-bottom: 12px;
 }

 .margin-bottom-md {
     margin-bottom: 24px;
 }

 .margin-bottom-lg {
     margin-bottom: 48px;
 }

 .d-flex-column {
     display: flex;
     flex-direction: column;
 }

 .gap-16 {
     gap: 16px;
 }

 .align-center {
     align-items: center;
 }


 /* Enscygen Style Blue Accent */
 .text-enscygen-blue {
     color: #0f62fe;
     text-decoration: none;
 }

 .text-enscygen-blue:hover {
     text-decoration: underline;
 }

 /* Corporate Hero */
 .scea-hero {
     padding: 50px 0;
     background-color: #fff;
 }

 .hero-flex {
     display: flex;
     align-items: center;
     gap: 60px;
 }

 .hero-content {
     flex: 1;
 }

 .hero-visual {
     flex: 1;
     display: flex;
     justify-content: flex-end;
 }

 .hero-visual img {
     max-width: 100%;
     height: auto;
 }

 .scea-hero h1 {
     font-size: 3.5rem;
     font-weight: 300;
     margin-bottom: 24px;
     color: #000;
 }

 .scea-hero p {
     font-size: 1.1rem;
     color: #000;
     line-height: 1.5;
 }

 /* Apps Overview Section */
 .overview-section {
     padding: 80px 0;
     border-top: 1px solid #e0e0e0;
 }

 .overview-flex {
     display: flex;
     gap: 80px;
 }

 .overview-left {
     flex: 0 0 40%;
 }

 .overview-right {
     flex: 1;
 }

 /* Product Grid */
 .product-section {
     padding-bottom: 80px;
 }

 .product-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     border-top: 1px solid #e0e0e0;
     border-left: 1px solid #e0e0e0;
 }

 .product-cell {
     display: flex;
     flex-direction: row;
     min-height: 280px;
     text-decoration: none;
     color: inherit;
     border-right: 1px solid #e0e0e0;
     border-bottom: 1px solid #e0e0e0;
     transition: background 0.2s;
 }

 .product-cell:hover {
     background-color: #f6f6f6;
 }

 .product-image {
     flex: 0 0 40%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .product-image img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     width:100%;
 }

 .product-info {
     flex: 1;
     padding: 32px;
     display: flex;
     flex-direction: column;
 }

 .category-tag {
     font-size: 0.8rem;
     color: #525252;
     margin-bottom: 8px;
 }

 .product-info h3 {
     font-size: 1.25rem;
     font-weight: 500;
     margin-bottom: 0;
     color: #000;
 }

 .product-info p {
     font-size: 0.95rem;
     color: #525252;
     margin: 16px 0 24px;
     line-height: 1.6;
 }

 .arrow-link {
     margin-top: auto;
     color: #0f62fe;
     display: flex;
     align-items: center;
 }

 /* Resources Section */
 .resource-section {
     background-color: #f4f4f4;
     padding: 80px 0;
 }

 .resource-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background-color: #e0e0e0;
 }

 .resource-card {
     background: #fff;
     padding: 32px;
     display: flex;
     flex-direction: column;
     transition: background 0.2s;
     text-decoration: none;
     color: inherit;
 }

 .resource-card:hover {
     background-color: #f6f6f6;
 }

 .resource-card .tag {
     font-size: 0.75rem;
     color: #525252;
     margin-bottom: 12px;
     text-transform: uppercase;
     font-weight: 600;
 }

 .resource-card p {
     font-size: 1rem;
     color: #161616;
     margin-bottom: 40px;
 }

 /* Action Bar */
 .action-strip {
     background-color: #fff;
     /* Changed to White */
     color: #000;
     padding: 100px 0;
     border-top: 1px solid #e0e0e0;
     text-align: center;
 }

 .btn-enscygen {
     background-color: #0f62fe;
     color: #fff;
     padding: 10px 28px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-weight: 500;
     border: none;
 }

 .btn-enscygen:hover {
     background-color: #0353e9;
     color: #fff;
 }

 @media (max-width: 1024px) {
     .hero-flex {
         flex-direction: column;
     }

     .hero-visual {
         justify-content: center;
     }

     .overview-flex {
         flex-direction: column;
         gap: 30px;
     }

     .overview-left {
         flex: 0 0 100%;
     }

     .resource-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .product-grid {
         grid-template-columns: 1fr;
     }

     .scea-hero h1 {
         font-size: 2.5rem;
     }

     .resource-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {
     .product-cell {
         flex-direction: column;
     }

     .product-image {
         flex: 0 0 200px;
     }
 }