#section1 {
    /* background-color: yellowgreen; */
    width: var(--full-size);
    height: auto;
    display: flex;
    background-color: rgb(0, 0, 0);
    flex-direction: column;
    justify-content: flex-start;
}
#section2 {
    width: var(--full-size);
    height: auto;
    min-height: 1000px;
    display: flex;
    flex-direction: row;
    background-color: rgb(0, 0, 0);
}
.sec1TextTitleContainer{
    width: var(--full-size);
    height: 300px;
    padding-top: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.sec1TextTitle{
    color: white;
}
.sec1TextSub{
    color: white;
    font-weight: lighter;
    font-size: 16px;
    letter-spacing: 8px;
}
.sec2LContainer{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 80px;
    overflow: hidden;
}
.sec2RContainer{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 80px;
    z-index: 1;
}
.sec2TextContainer{
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-left: 70px;
}

.sec2TextTitleAutopak{
    color: #BACDEA;
    font-weight: 800;
}
.sec2TextTitle{
    color: #BACDEA;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 500;
}
.sec2Text{
    width: auto;
    max-width: 600px;
    margin-bottom: 20px;
    color: white;
}
.sec2Image1{
    width: 470px;
    object-fit: cover;
    position: absolute;
}
.sec2Image2{
    width: 470px;
    object-fit: cover;
    position: absolute;
}
.sec2ImageContainer{
    width: 70%;
    display: flex;
    height: 90%;
    justify-content: center;
    align-items: center;
}
@media (min-width:1101px) and (max-width: 1919px){
    #section1 {width: 100%;}
    #section1 .sec1TextTitleContainer{
        width: 100%;
    }
    #section2 {
        width: 100%;
    }
}
@media (max-width:1100px){
    #section1 {
        width: 100%;
    }
    #section2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .sec1TextTitleContainer{
        width: 100%;
        height: 300px;
        padding-top: 40px;
    }
    .sec2LContainer{
        margin: 0;
        width: 100%;
        position: absolute;
        transform: translate3d(0px, -100px, 0px);
    }
    .sec2ImageContainer {
        width: auto;
        align-items: flex-start;
        height: auto;
    }
    .sec2Text{
        width: 100%;
        max-width: unset;
    }
    .sec2RContainer{
        width: 100%;
        justify-content: center;
    }

    .sec2Image1{
        display: none;
    }
    .sec2Image2{
        opacity: 0.3;
        width: 700px;
        position: unset;
    }

    .sec2TextContainer{
        margin-left: 0;
    }
}


    *   {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #e5e7eb;
            line-height: 1.6;
            min-height: 100vh;
        }

        .hero-section {
            padding: 60px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1em;
            opacity: 0.9;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(13, 81, 160, 0.8) 0%, rgba(201, 215, 238, 0.3) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9em;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .qa-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .qa-category {
            background: linear-gradient(135deg, #0d51a0 0%, #1e40af 100%);
            color: white;
            padding: 20px 30px;
            margin: 40px 0 25px 0;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.1em;
            text-align: center;
            box-shadow: 
                0 10px 25px rgba(13, 81, 160, 0.3),
                0 4px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .qa-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .qa-category:hover::before {
            left: 100%;
        }

        .qa-item {
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .qa-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .qa-question {
            color: #ffffff;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            padding: 20px 25px;
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            border-left: 4px solid #0d51a0;
            transition: all 0.3s ease;
            font-size: 1em;
        }

        .qa-question:hover {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            border-left-color: #c9d7ee;
        }

        .qa-question::after {
            content: "❯";
            color: #c9d7ee;
            font-weight: bold;
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 1.2em;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .qa-question.active {
            background: linear-gradient(135deg, #0d51a0 0%, #1e40af 100%);
            border-left-color: #c9d7ee;
        }

        .qa-question.active::after {
            transform: translateY(-50%) rotate(270deg);
            color: #ffffff;
        }

        .qa-answer {
            color: #e5e7eb;
            line-height: 1.7;
            padding: 0 25px;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border-left: 4px solid #c9d7ee;
            display: block;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .qa-answer.show {
            max-height: 300px;
            padding: 25px 25px;
        }

        .correct-spelling {
            color: #10b981;
            font-weight: 600;
            background: rgba(16, 185, 129, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        .incorrect-spelling {
            color: #ef4444;
            font-weight: 600;
            text-decoration: line-through;
            background: rgba(239, 68, 68, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .search-box {
            background: rgba(31, 41, 55, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 15px 25px;
            width: 100%;
            max-width: 500px;
            margin: 30px auto;
            color: #e5e7eb;
            font-size: 1em;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        #logoButton{
        height: 63px;
        display: flex;
        justify-items: center;
        align-content: center;
        cursor: pointer;
        padding-left: 90px;
        padding-top: 11px;
        padding-bottom: 6px;
    }

        .search-box:focus {
            outline: none;
            border-color: #0d51a0;
            box-shadow: 0 0 20px rgba(13, 81, 160, 0.3);
        }

        .search-box::placeholder {
            color: #9ca3af;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0d51a0 0%, #1e40af 100%);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 81, 160, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2em;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .qa-container {
                padding: 20px 10px;
            }
            
            .qa-question, .qa-answer {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .qa-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .qa-item:nth-child(odd) {
            animation-delay: 0.1s;
        }

        .qa-item:nth-child(even) {
            animation-delay: 0.2s;
        }