  :root {
            --primary-blue: #0d6efd; 
            --dark-blue: #0A2C56;   
            --light-gray: #f8f9fa; 
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .navbar-dark {
            background-color: var(--dark-blue) !important;
        }

        .section-title {
            color: var(--dark-blue);
            border-left: 4px solid var(--primary-blue);
            padding-left: 15px;
            margin-bottom: 30px;
        }

        .section-title-h5 {
            color: var(--dark-blue);
            border-left: 4px solid var(--primary-blue);
            padding-left: 1rem;
            margin-bottom: 1rem;
        }

        .section-contact-person{
            margin-left: 1rem;
        }

        .section-contact-person-text{
           padding-left: 1rem;
           margin-bottom: 0px;
        }

        .product-gallery img {
            cursor: pointer;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            border-radius: 5px;
        }

        .product-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        #about {
            background-color: var(--light-gray);
            padding: 80px 0;
            text-align: center;
        }

        #about h1 {
            font-size: 2.5rem;
            font-weight: 300;
        }

        footer {
            background-color: var(--dark-blue);
            color: white;
        }

        .product-gallery img {
            aspect-ratio: 16 / 12; 
            object-fit: cover;
            width: 100%;
            height: auto;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .text-justify-custom {
            text-align: justify !important;
         }

        .product-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        h1.section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 3rem;
            color: var(--dark-blue);
            border-left: none;
            border-bottom: 3px solid var(--primary-blue);
            display: inline-block;
            padding-bottom: 10px;
        }

        .lang-link img { 
         opacity: 0.8; 
         transition: transform .12s ease, opacity .12s ease, border-color .12s ease; 
         border: 1px solid rgba(255, 255, 255, 0.629); 
    }

    .lang-link img:hover { 
        transform: translateY(-2px) scale(1.03); 
        opacity: 1; 
        
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .lang-link.active img { 
        outline: 2px solid #fff; 
        box-shadow: 0 0 0 3px rgba(13,110,253,0.12); 
        opacity: 1; 
        
        border-color: transparent; 
    }

     #thank-you-section {
            background-color: var(--light-gray);
            padding: 100px 0; 
            min-height: calc(100vh - 120px);
            display: flex;
            align-items: center;
   }
   :target {
    scroll-margin-top: 80px; 
}
