 body {
            line-height: 1.6;
        }
        .arete-container {
            max-width: 80%;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
		
		.arete-container p {
			color:#333;
			font-weight:400;
		}
        .arete-title, .arete-subtitle {
            color: #0072ff;
			margin:10px auto;
			text-align:center;
			padding:15px;
        }
		
		.arete-subtitle{
			Text-align:left;
		}
        .arete-list {
            list-style-type: disc;
            margin-left: 20px;
        }
        .arete-image {
            display: block;
            width: 100%;
            height: 350px;
            margin-bottom: 20px;
        }



.product-container {
	display:flex;
	flex:1;
	justify-content:center;
	align-items:flex-start;
	margin:10px auto;
	padding : 10px;
}


        .table-container {
            width: 100%;
            overflow-x: auto;
        }
        .arete-product-table {
            width: 100%;
            border-collapse: collapse;
        }
        .arete-product-table th, .arete-product-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
            word-wrap: break-word;
            white-space: normal;
        }
        .arete-product-table th {
            background: linear-gradient(#00c6ff, #0072ff);
            color: white;
        }
		
		.arete-product-table tr:nth-child(even){background-color: #f2f2f2;}

        .arete-product-table tr:hover {background-color: #ddd;}
		 
		 
        @media (max-width: 600px) {
            .arete-product-table th, .arete-product-table td {
                font-size: 14px;
                padding: 6px;
            }
        }
		
		.product-image-main img {
			width:400px;
            height:300px;	
            object-fit:contain;			
		}
		
		
		@media (max-width: 600px) {
			.product-container{
				flex-direction:column;
			}
		}
		
		
  .services-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 15px;
      margin: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .services-card img {
      object-fit: contain;
      max-width: 100%;
      height: 200px;
      border-radius: 4px;
	  display:block;
	  margin:0 auto;
    }

    .services-card p {
      font-weight: 700;
      font-size: 14px;
	  color:#000;
	  text-align:center;
	  text-transform:uppercase;
    }


    .services-card:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }

    .services-link, .services-link:hover {
      text-decoration: none;
      color: inherit;
    }


    .services-container {
      padding: 0 30px; 
      margin: 15px auto;
    }

    @media screen and (max-width:600px) {
      .services-card{
        margin: 0;
      }
      
      .services-card p {
        font-size: 12px;
      }
    }