   /* CSS styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0 auto;
      padding: 0px;
      max-width: 1024px;
      background:url('IMG/body_backgroud_img_1427X1080.webp') no-repeat fixed center;
      background-color: #EAECEE;
      background-size : 100%
      z-index: 0;
    }

    .head-main {
        position: fixed;
        max-width: 1024px;
        margin: 0 auto;
        left: 0px;
        right: 0px;
        height: 40px;
        padding: 0px;
        top: 0px;
        /* background-color: #EAECEE; */
        border-style : hidden hidden solid hidden;
        border-width : 1px;
        z-index: 2;
    }
	
    ::-webkit-scrollbar {
      display: none;
    }

	.container {
		position: fixed;	
		top: 40px;
		bottom: 20px;
		margin: 0 auto;
		left: 0;
		right: 0;
		padding: 0;
		max-width: 1024px;
		overflow: hidden;
	
	}
	
    .scroll_page {
		position: relative;
		margin: 0 auto;
		left: 0;
		right: 0;
        z-index: 1;
		height: 100%;
		max-width: 1024px;
		overflow-x: hidden;
		overflow-y: auto;
    }

    .main-content {
       position: static;
	   margin: 0 auto;
	   left: 0;
	   right: 0;
	   max-width: 1024px;
       top: 0px;
       text-align: center; /* Horizontally center the content */
    }


    .content_text {
        display: block;
        font-size :1.2em;
        text-align: left;
        line-height: 150%;
    }

    .grid-container {
      position: static;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); /* Responsive grid columns */
      grid-gap: 20px; /* Grid gap between items */
      margin: 0 auto; /* Center the grid container */
      z-index: 1;
    }

    .grid-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      border: dashed #95A5A6;
      background: rgba(255, 255, 255, 0.3);
    }

    .grid-item .title {
      font-size: 2em;
      color: black;
      padding: 10px;
      font-weight: bold;
      text-align: center;
      background: rgba(255, 255, 255, 0.3);

    }

    .grid-item .content {
      padding: 20px;
      text-align: center;
    }

    .contact-info {
      text-align: center;
      margin-top: 40px;
    }

    #logo_mail {
        position: absolute;
        top: 7px;
        left: 30px;
    }
	
    #logo_whatsapp {
        position: absolute;
        top: 7px;
        left: 100px;
    }
	

    #logo_twitter {
        position: absolute;
        top: 7px;
        right: -128px;
    }

    #logo_facebook {
        position: absolute;
        top: 7px;
        right: -192px;
    }



    #main-description > b {
        font-size: 1.2em;
    }

    #description-title {
        font-size : 2em;
    }

    #main-description {
        font-size : 2em;
        line-height : 200%;
    }