 <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
             background-color: lightblue;
            color: #A9ACB6;
        }
       .content-section img {
             max-width: 100%; 
             height: auto; 
              margin-top: 20px;
        }


        header {
            position: relative;
            background-color: #00000B;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .name {
            font-family:  Arial, sans-serif;
            font-size: 36px;
            color: #A9ACB6;
        }

       .contact-info {
            text-align: left;
            font-size: 14px;
	    color: #A9ACB6;
	    
        }
	.contact-info p {
	    margin-right:10px;
            padding:5px 5px;
	}

      
        nav {
           
    	   width: 98%;
    	   background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); 
    	   position: absolute;
    	   z-index: 2;
         
}

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
	    
            
	    text-align: right;
        }

        nav ul li {
            margin: 0 0px;
        }

        nav ul li a {
            color: #A9ACB6;
            text-decoration: none;
            font-size: 20px;
            padding: 40px 30px;
	    display: block;
	    background:linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); 
            transition: background-color 0.3s, color 0.3s;
	    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        }

        nav ul li a:hover {
            background-color: #00000B;
            color: #A9ACB6;
        }

        .icons {
            display: flex;
            align-items: center;
        }

        .icons a {
            margin-left: 15px;
            color: #A9ACB6;
            font-size: 18px;
            text-decoration: none;
        }
        .slide {
            display: none;
            width: 100%;
            height: 100%;
	}
        
       .slideshow-container {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        z-index: 1;
        
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}


.slide-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5); 
    padding: 10px;
    border-radius: 10px; 
}

        .slide-text h2 {
            font-size: 50px;
            margin: 0;
        }
	
        .content-section {
            display: flex; 
            justify-content: space-between;
            align-items: flex-start; 
            margin: 30px; /* Κενό γύρω από την ενότητα */
            flex-wrap: wrap;
        }

        #about-us {
            flex: 1;
            max-width: 40%; /* Περιορίζει το πλάτος στο 50% */
            margin-right: 20px;
            color: #A9ACB6;
            line-height: 1.0;
            font-size: 18px;
        }

        #about-us h2 {
            font-size: 30px;
            margin-bottom: 10px;
            font-family: 'Satisfy', cursive;
        }

        #photo-collage {
            flex: 1;
            height: 300px; /* Ύψος του κολάζ */
   
         }

        #photo-collage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        footer {
            background-color: #001B4D;
            color: #A9ACB6;
            padding: 20px;
            text-align: center;
        }

        footer a {
            color: #A9ACB6;
            text-decoration: none;
        }

        footer a:hover {
            color: white;
        }
	.truck-text{
	margin:40px;
	color: #A9ACB6;
        }
       .truck-text h2{
	font-size: 30px;
        margin-bottom: 10px;
        font-family: 'Satisfy',cursive;
       }


    .container {
        display: flex; 
        justify-content: space-between;
        align-items: center; 
        padding: 20px; 
        gap: 20px; 
    }

    
    .logo {
        flex-shrink: 0; 
        max-width: 150px; 
    }

    .logo img {
        width: 100%; 
        height: auto;
    }

  
    .info {
        flex: 1; 
        text-align: center;
    }

   
    .map {
        flex-shrink: 0; 
        max-width: 300px; 
    }

    .map iframe {
        width: 100%; 
        height: 100%; 
    }
   .gallery {
    display: grid;
    column-gap: 50px;
    row-gap: 50px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
.photo-gallery h2{
	font-size: 30px;
        margin-bottom: 10px;
        font-family: 'Satisfy', cursive;
	color: #A9ACB6;

}
	


.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1100;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 30px;
        right: 0;
        width: 50%;
        background: black;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        padding: 10px 0;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        display: block;
    }
      .container{
	flex-direction: column;
        text-align: center; 
        gap: 10px;
      }
    
    .content-section {
        flex-direction: column;
        align-items: center;
    }

    #about-us {
        max-width: 100%; 
        margin-right: 0; 
        text-align: left;
    }

    #photo-collage {
        width: 100%; 
        height: auto; 
    }

    #photo-collage img {
        height: auto;
    }


	 header {
            position: relative;
            background-color: #00000B;
            padding: 20px;
            flex-direction: column;
            align-items: center;
        }

}
</style>
