 /* * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: 'Segoe UI', sans-serif;
   background: linear-gradient(132deg, #cedec4 35%, #f6f6f4 53%);
 }

 h1 {
   text-align: center;
   padding: 20px;
   font-size: 1.8em;
 }

 section {
   padding: 20px;
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   background: linear-gradient(132deg, rgba(206, 222, 196, 1) 35%, rgba(246, 246, 244, 1) 53%);
 }

 #circle-container {
   position: relative;
   width: 700px;
   height: 700px;
   margin: auto;
   display: none;
  
 }

 .center-circle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: white;
   border-radius: 50%;
   padding: 40px 60px;
   font-size: 1.2rem;
   font-weight: bold;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   color: #333;
   z-index: 1;
 }

 .icon1 {
   position: absolute;
   width: 120px;
   height: 100px;
   background: white;
   border-radius: 12px;
   box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 10px;
   transform-origin: center;
   transition: 0.3s;
 }

 .icon1:hover {
   transform: scale(1.1);
   background: #f0f8ff;
 }

 .icon1 img {
   width: 40px;
   height: 40px;
   object-fit: contain;
   margin-bottom: 6px;
 }

 .icon1:hover {
   transform: scale(1.1);
   background-color: #cedec4;
 } */


 body {
   margin: 0;
   font-family: Arial, sans-serif;
 }

 section {
   padding: 20px;
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   background: linear-gradient(132deg, rgba(206, 222, 196, 1) 35%, rgba(246, 246, 244, 1) 53%);
 }

 #circle-container {
   position: relative;
   width: 700px;
   height: 700px;
   margin: auto;
   display: none;
   /* hidden by default (mobile) */
 }

 .center-circle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: #d3efdc;
   border-radius: 50%;
   padding: 40px 60px;
   font-size: 1.2rem;
   font-weight: bold;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   color: #333;
   z-index: 1;
 }

 .icon1 {
   position: absolute;
   width: 140px;
   height: 120px;
   background: #deefd3;
   border-radius: 12px;
   box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 10px;
   transform-origin: center;
   transition: 0.3s;
 }

 .icon1:hover {
   transform: scale(1.1);
   background: #cedec4;
 }

 .icon1 img {
   width: 70px;
   height: 70px;
   object-fit: contain;
   margin-bottom: 6px;
   background-color: transparent;
   mix-blend-mode: multiply;
 }

 .accordion-columns {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   gap: 20px;
 }

 .accordion-column {
   flex: 1;
 }

 #sec-2 {
   height: 100vh;
 }

 #accordion-container h1 {
   padding-bottom: 30px;
 }

 .accordion-item {
   background: #e0f7ea;
   border-radius: 8px;
   padding: 15px 15px;
 }

 .accordion-item summary {
   font-weight: bold;
   cursor: pointer;
 }

 .accordion-item p {
   margin: 5px 0 0;
   font-size: 0.95rem;
 }

 @media (min-width: 768px) {
   #circle-container {
     display: block;
   }

   #accordion-container {
     display: none !important;
   }

   #accordion-container h1 {
     margin-top: 300px;
     border: 1px solid red;
   }
 }