/* Mobile Specific Styles */
@media (max-width: 768px) {
    /* Reset Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f4f4f4;
        
    }

    /* Navbar Styles */
    .navbar {
        background-color: #ffffff;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
    }

    .navbar .logo img {
        height: 40px;
        margin-right: 10px;
    }

    .navbar .menu-icon {
        font-size: 24px;
        cursor: pointer;
        display: flex;
    }

    .navbar .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav.active {
        display: flex;
    }

    .navbar .nav li {
        width: 100%;
        padding: 0.5em 0;
    }

    .navbar .nav li a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 0.5em 0;
    }

    .navbar .nav li a:hover {
        background-color: #f4f4f4;
    }


    /* Hero Section */
    .hero {
        background: url('images/new_background.png') no-repeat center center/cover;
        color: white;
        text-align: center;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1em;
    }

    .hero h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .hero .button {
        background-color: #ff5733;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1em;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .hero .button:hover {
        background-color: #e14e2b;
    }

    /* Container */
    .container {
        width: 90%;
        margin: 0 auto;
    }

    /* About Section */
    .about {
        padding: 2em 0;
        text-align: center;
    }

    .about h2 {
        font-size: 2em;
        margin-bottom: 15px;
        color: #333;
    }

    .about p {
        font-size: 1em;
        color: #666;
    }

    /* Product Section */
    .product {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .product img {
        width: 80%;
        border-radius: 10px 10px 0 0;
        margin-bottom: 10px;
    }

    .product h2 {
        font-size: 1.5em;
        color: #ff5733;
        margin-bottom: 5px;
    }

    .product p {
        font-size: 1em;
        color: #333;
    }

    /* Slideshow */
    .slideshow {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
    }

    .slides {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .slides img {
        width: 80%;
        display: none;
    }

    .slides img.active {
        display: block;
    }

    .navigation {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .prev, .next {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        font-size: 18px;
        transition: background-color 0.3s;
        pointer-events: auto;
        z-index: 10;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Testimonials */
    .testimonials {
        padding: 2em 0;
        background-color: #f4f4f4;
        text-align: center;
    }

    .testimonials h2 {
        font-size: 2em;
        margin-bottom: 15px;
        color: #333;
    }

    .testimonial-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .testimonial {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 90%;
    }

    .testimonial p {
        font-size: 1em;
        color: #666;
    }

    .testimonial span {
        display: block;
        margin-top: 5px;
        font-size: 1em;
        color: #ff5733;
    }

    /* Footer */
    .footer {
        background-color: #20232a;
        color: white;
        text-align: center;
        padding: 15px 0;
    }

    .footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer a {
        color: white;
        text-decoration: none;
        margin: 5px 0;
    }

    .footer a:hover {
        color: #ff5733;
    }

    .footer .social-icon {
        margin: 5px 10px;
        color: white;
        font-size: 20px;
    }

    .footer .social-icon:hover {
        color: #ff5733;
    }

    .footer .newsletter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .newsletter input {
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        border: none;
    }

    .footer .newsletter button {
        padding: 10px 20px;
        background-color: #ff5733;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .footer .newsletter button:hover {
        background-color: #e14e2b;
    }

    /* Cookie Consent */
    .cookie-consent-banner, .cookie-settings {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #1f325e;
        color: white;
        text-align: center;
        padding: 1rem;
        z-index: 1000;
    }

    .cookie-button {
        background-color: #ff5733;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        cursor: pointer;
    }

    .cookie-button:hover {
        background-color: #e14e2b;
    }

    .cookie-settings {
        display: none;
        background-color: #fff;
        color: black;
        padding: 2rem;
        text-align: left;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Form Styles */
    form#contact-form {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-top: 1em;
    }

    form#contact-form label {
        font-weight: bold;
    }

    form#contact-form input, form#contact-form textarea {
        padding: 0.5em;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    form#contact-form button {
        padding: 0.75em;
        background-color: #20232a;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    form#contact-form button:hover {
        background-color: #333;
    }
    
    #captcha-container {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        align-items: flex-start;
    }
    
    .image-section {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2em;
    }
    
    .image-section img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}
