* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    padding: 0px 30px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo img:first-child 
{
    height: 50px;
    width: auto;
}
.logo img:last-child 
{
    height: 25px;
    width: auto;
}
.logo a 
{
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn 
{
    from 
    {
        opacity: 0;
    }
    to 
    {
        opacity: 1;
    }
}
body 
{
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h2
{
    color: #252525;
    font-size: 36px;
    text-align: center;
}
ul
{
    list-style: none;    
}
ul li
{
    display: inline-block;
    position: relative;
}
ul li a
{
    display: block;
    padding: 25px 20px;
    color: #16135E;
    text-decoration: none;
    text-align: center;
    font-size: 20px;    
}
ul li ul.dropdown-1 li
{
    display: block;
}
ul li ul.dropdown-1
{
    width: 200px;
    background: #FFFFFF;
    position: absolute;
    z-index: 998;
    display: none;
    border-radius: 0 0 4px 4px;
    right: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
ul li ul.dropdown-2 li
{
    display: block;
}
ul li ul.dropdown-2
{
    width: 200px;
    background: #FFFFFF;
    position: absolute;
    right: 100%;
    top: 0;
    z-index: 999;
    display: none;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
ul li a:hover
{
    background: #135B95;
    color: #FFFFFF;
}
@media (min-width: 993px)
{
    ul li:hover ul.dropdown-1
    {
        display: block;
    }
    ul li ul.dropdown-1 li:hover ul.dropdown-2
    {
        display: block;
    }
}
ul li ul a
{
    color: #16135E;
    transition: all 0.2 ease-in-out;
    font-size: 16px;
}
ul li ul a:hover
{
    background: #135B95;
    color: #FFFFFF;
}
.responsive-switch 
{
    display: none;
}
.responsive-menu 
{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.responsive-line 
{
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.responsive-switch:checked ~ .responsive-menu .responsive-line:nth-child(1) 
{
    transform: rotate(45deg) translate(5px, 6px);
}
.responsive-switch:checked ~ .responsive-menu .responsive-line:nth-child(2) 
{
    opacity: 0;
}
.responsive-switch:checked ~ .responsive-menu .responsive-line:nth-child(3) 
{
    transform: rotate(-45deg) translate(5px, -6px);
}
.hero 
{
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: -2px;
}
.hero-video 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.hero-content 
{
    position: relative;
    z-index: 3;
    padding: 20px;
}
.hero-content h1 
{
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-content p 
{
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-btn 
{
    padding: 15px 40px;
    font-size: 20px;
}
.product-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}
.product-card 
{
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.product-image 
{
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}
.product-info 
{
    padding: 25px;
}
.product-info h3 
{
    color: #16135E;
    margin-bottom: 10px;
    font-size: 22px;
}
.product-info p 
{
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: 0;
}
.text-link 
{
    color: #135B95;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.text-link:hover 
{
    text-decoration: underline;
}
.main 
{
    max-width: 1310px;
    margin: 30px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}
.section 
{
    margin-bottom: 30px;
}
.card 
{
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card_h3_title 
{
    margin-bottom: 5px;
    margin-top: 20px;
    margin-left: 20px;
    color: #444;
    font-size: 26px;
}
.card_h4_title 
{
    margin-bottom: 5px;
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #444;
    font-size: 20px;
}
.card_text
{
    color: black;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
}
.ul_card
{
    margin-left: 25px;
    font-size: 18px;
    margin-bottom: 25px;
    margin-left: 20px;
    list-style: disc;
    list-style-position: inside;
}
.ul_card li
{
    display: list-item;
    position: static;
}
.card p
{
    margin-left: 20px;
}
.cta-container 
{
    text-align: center;
    margin-top: 15px;
}
.cta-button
{
    display: inline-block;
    background-color: #135B95;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 3px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.cta-button:hover
{
    background-color: #16135E;
    color: #FFFFFF;
    transform: translateY(-2px);
}
.autogen-grid
{
    display: grid;    
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.autogen-card
{
    background: white;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.autogen-card:hover
{
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}
.autogen-title
{
    margin-top: 0;
    margin-bottom: 15px;
    color: #16135E;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.autogen-links
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.autogen-btn
{
    display: block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}
.autogen-btn:hover
{
    background-color: #135B95; 
    color: white;
    border-color: #135B95;
    box-shadow: 0 2px 4px rgba(19, 91, 149, 0.2);
}
.image_gallery
{
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    justify-content: center;
    gap: 15px;
    padding: 20px;
}
.image_gallery a
{
    display: block;
    margin: 5px;
    height: 275px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}
.image_gallery img 
{
    width: 100%;
    height: 100%;    
    cursor: pointer;
}
.demo-layout 
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}
.demo-info 
{
    flex: 0 1 auto;
    max-width: 550px;
}
.demo-image 
{
    flex: 0 0 auto;
    width: 300px;
    max-width: 100%;
}
.demo-image img 
{
    width: 100%;
    height: auto;
    border: none;    
    display: block;
}
.privacy-policy li
{
    display: list-item;
    list-style: disc;
    margin-left: 15px;
}
.about-layout
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}
.about-text
{
    flex: 1;
    min-width: 300px;
}

.about-image
{
    flex: 0 0 400px;
    max-width: 100%;
}
.about-image img 
{
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: block;
}
.footer 
{
    text-align: center;
    padding: 25px;
    margin-top: 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border-top: 1px solid #ddd;    
}
.footer-links
{
    margin-bottom: 15px;    
}
.footer-links li 
{
    display: inline-block; 
    margin: 0 10px;
}
.footer-links li a 
{    
    padding: 0;
    font-size: 18px;
    color: #FFFFFF;    
}
.lightbox-container 
{
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox-container.is-open 
{
    display: flex;
}
.lightbox-content 
{
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
}
.lightbox-close 
{
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover 
{
    color: #bbb;
}
.lightbox-prev, .lightbox-next 
{
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
}
.lightbox-prev 
{ 
    left: 15px; 
}
.lightbox-next 
{ 
    right: 15px; 
}
.lightbox-prev:hover, .lightbox-next:hover 
{
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
@media (min-width: 993px)
{
    .footer-links li a:hover
    {
        background: none;
        color: #f5f5f5;
        text-decoration: underline;
    }
}
.footer_text 
{
    margin: 0;
}

@media (max-width: 992px) 
{   
    header
    {
        padding: 10px 15px;
        position: relative;
    }
    .responsive-menu 
    {
        display: flex;
    }      
    .logo img:first-child
    {
        display: none !important;
    }
    .logo img:last-child
    {
        height: auto !important; 
        width: 100%;
        max-width: 180px;
        object-fit: contain;
        object-position: left;
        display: block;
    }
    .logo a
    {
        gap: 0;
        display: block;
        width: 100%;
    }
    .logo
    {
        flex: 1;
        min-width: 0;
        margin-right: 10px;
    }
    nav 
    {
        display: none;
        position: absolute;
        top: 96%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        margin-top: 0;
    }    
    .responsive-switch:checked ~ nav 
    {
        display: block;
    }
    ul 
    {
        list-style: none;
    }
    
    ul li 
    {
        display: block; 
        position: static;
    }
    ul li a 
    {
        display: block;
        padding: 15px 20px; 
        text-align: left; 
        border-bottom: 1px solid #f0f0f0;
    }
    ul li a:hover 
    {
        /*background: #f5f5f5;*/
        background: #135B95;
        /*color: #16135E;*/
        color: #f0f0f0;        
    }    
    ul li ul.dropdown-1, ul li ul.dropdown-2 
    {
        position: static; 
        display: none;
        width: auto;
        box-shadow: none;
        border-radius: 0;
        background: #f9f9f9;        
    }
    ul li ul.is-open 
    {
        display: block;
    }    
    ul li ul a 
    {
        padding-left: 40px;
    }    
    ul li ul li ul a 
    {
        padding-left: 60px;
    }
    .hero-content h1 
    {
        font-size: 36px;
    }
    .hero-content p 
    {
        font-size: 18px;
        padding: 0 20px;
    }
    .demo-layout 
    {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }    
    .demo-image 
    {
        width: 100%;
        margin-top: 20px;
    }    
    .demo-info .cta-container 
    {
        text-align: center; 
        margin-left: 0;
    }
    .about-layout 
    {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    .about-image 
    {
        flex: 0 0 auto;
        width: 100%;
    }    
    .about-text .ul_card 
    {
        text-align: left; 
        display: inline-block;
    }
}