* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color: #FAF9F6;
}

    .content{
        display: grid;
    }

        /* Navigation Bar */
        .navigation-bar {
            width: 100%;
            background-color: ghostwhite;
            position: sticky;
            top: -50px;
            transition: transform 0.3s ease;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

            /* Top Bar */
            .navigation-topbar {
                min-height: 50px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 30px;
                background-color: ghostwhite;
                border-bottom: 1px solid #e0e0e0;
                flex-wrap: wrap;
                gap: 10px;
            }

                .contact-email {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    color: #555;
                    transition: color 0.3s;
                }

                    .contact-email:hover {
                        color: #D27D2D;
                    }

                .social-media-contact {
                    display: flex;
                    align-items: center;
                    gap: 0;
                }

                    .social-icon {
                        width: 60px;
                        height: 32px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        transition: transform 0.3s;
                        cursor: pointer;
                        border-right: 1px solid #ddd;
                    }

                        .social-icon:hover {
                            transform: translateY(-2px);
                        }

                        .social-icon img {
                            width: 24px;
                            height: 24px;
                        }

                    .phone-contact {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        text-decoration: none;
                        color: #555;
                        font-size: 14px;
                        font-weight: 500;
                        padding-left: 15px;
                        transition: color 0.3s;
                    }

                        .phone-contact:hover {
                            color: #D27D2D;
                        }

            /* Main Navigation */
            .navigation-menu {
                min-height: 80px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 40px;
                background-color: ghostwhite;
            }

                .menu-info {
                    text-align: center;
                }

                    .menu-info a {
                        text-decoration: none;
                        color: #333;
                        font-size: 16px;
                        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                        font-weight: 600;
                        line-height: 1.6;
                        transition: color 0.3s;
                    }

                    .menu-info a:hover {
                        color: #D27D2D;
                    }

            /* Hamburger Menu Button */
            .hamburger {
                display: none;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 10px;
            }

            .hamburger span {
                width: 30px;
                height: 3px;
                background-color: #333;
                transition: 0.3s;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

                /* Menu Items */
                .menu ul {
                    display: flex;
                    gap: 40px;
                    list-style: none;
                    align-items: center;
                }

                .menu ul li {
                    position: relative;
                }

                    .menu ul li a,
                    .menu ul li p {
                        text-decoration: none;
                        color: #333;
                        font-size: 15px;
                        font-weight: 500;
                        cursor: pointer;
                        padding: 8px 0;
                        transition: color 0.3s;
                        position: relative;
                    }

                    .menu ul li a::after,
                    .menu ul li p::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 0;
                        height: 2px;
                        background-color: #D27D2D;
                        transition: width 0.3s;
                    }

                    .menu ul li a:hover,
                    .menu ul li p:hover {
                        color: #D27D2D;
                    }

                    .menu ul li a:hover::after,
                    .menu ul li p:hover::after {
                        width: 100%;
                    }

            /* Dropdown Menu */
            .sub-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: -20px;
                background-color: white;
                min-width: 200px;
                border-radius: 8px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
                padding: 10px 0;
                margin-top: 0;
                opacity: 0;
                transform: translateY(-10px);
                transition: opacity 0.3s, transform 0.3s;
            }

                .menu ul li:hover .sub-menu {
                    display: block;
                    opacity: 1;
                    transform: translateY(0);
                }

                .sub-menu ul {
                    display: flex;
                    flex-direction: column;
                    gap: 0;
                }

                    .sub-menu ul li {
                        width: 100%;
                    }

                    .sub-menu ul li a {
                        display: block;
                        padding: 12px 24px;
                        font-size: 14px;
                        color: #555;
                        transition: background-color 0.2s, color 0.2s;
                    }

                    .sub-menu ul li a::after {
                        display: none;
                    }

                    .sub-menu ul li a:hover {
                        background-color: #f8f8f8;
                        color: #D27D2D;
                        padding-left: 28px;
                    }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .navigation-topbar {
                padding: 10px 20px;
                font-size: 12px;
            }

            .social-media-contact {
                gap: 10px;
            }

            .social-icon {
                width: 28px;
                height: 28px;
            }

            .social-icon img {
                width: 20px;
                height: 20px;
            }

            .phone-contact {
                font-size: 12px;
                padding-left: 10px;
            }

            .navigation-menu {
                padding: 15px 20px;
            }

            .hamburger {
                display: flex;
            }

            .menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 300px;
                height: calc(100vh - 130px);
                background-color: white;
                transition: right 0.3s;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            .menu.active {
                right: 0;
            }

            .menu ul {
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
            }

            .menu ul li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .menu ul li a,
            .menu ul li p {
                display: block;
                padding: 15px 30px;
                font-size: 16px;
            }

            .menu ul li a::after,
            .menu ul li p::after {
                display: none;
            }

            .sub-menu {
                position: static;
                box-shadow: none;
                border-radius: 0;
                margin-top: 0;
                padding: 0;
                background-color: #f8f8f8;
            }

            .menu ul li:hover .sub-menu {
                display: none;
            }

            .menu ul li.active .sub-menu {
                display: block;
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 600px) {
            .navigation-topbar {
                display: none;
            }

            .navigation-bar {
                position: sticky;
                top: 0;
                left: 0;
                right: 0;
            }

            .navigation-menu {
                padding: 15px 20px;
                min-height: 70px;
            }

            .menu {
                position: absolute; /* Use absolute instead of fixed */
                top: 100%; /* Place it just below the navigation-menu */
                right: -60%; /* Hide it to the right initially */
                width: 60%; /* Only cover half the screen */
                height: calc(100vh - 70px); /* Height excluding navbar */
                background-color: ghostwhite;
                transition: right 0.3s ease;
                z-index: 900; /* lower than navbar */
                border-left: 1px solid #D27D2D;
            }

            .menu ul li a,
            .menu ul li p {
                padding: 14px 25px;
                font-size: 15px;
            }

            .sub-menu ul li a {
                padding: 10px 40px;
                font-size: 13px;
            }

            .sub-menu ul li a:hover {
                padding-left: 45px;
            }
        }
        
        /* Body Content */
        .body_content {
            width: 100%;
            background-color: #FAF9F6;
        }

        .sub-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px; /* Increased the gap between image and text */
            max-width: 1400px;
            width: 100%;
            margin: 40px auto;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .seller-image {
            flex: 1 1 40%; /* Adjust flex-basis to make room for the gap */
            min-width: 350px;
            display: flex; /* Add flex to center the image */
            align-items: center; /* Vertically center */
            justify-content: center; /* Horizontally center */
        }

        .seller-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .text {
            flex: 1 1 50%; /* Adjust flex-basis to make room for the gap */
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

                .text p {
                    font-size: 17px;
                    line-height: 1.7;
                    color: #4a4a4a;
                    text-align: left;
                    margin-bottom: 1.5em;
                }

                .about-title {
                    font-size: 48px;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 15px;
                    line-height: 1.2;
                }

                .credentials {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 30px;
                    flex-wrap: wrap;
                }

                .credential-badge {
                    background-color: #D27D2D;
                    color: white;
                    padding: 8px 16px;
                    border-radius: 20px;
                    font-size: 13px;
                    font-weight: 500;
                }

            .reviews {
                width: 100%;
                background-color: white;
                padding: 80px 40px;
                }

                .reviews-container {
                    max-width: 1400px;
                    margin: 0 auto;
                }

                .reviews-title {
                    font-size: 36px;
                    font-weight: 600;
                    color: #333;
                    margin-bottom: 40px;
                    text-align: center;
                }

                .reviews-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 30px;
                    margin-top: 40px;
                }

                .review-card {
                    background-color: #FAF9F6;
                    padding: 30px;
                    border-radius: 12px;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s, box-shadow 0.3s;
                }

                .review-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                }

                .review-rating {
                    color: #D27D2D;
                    font-size: 20px;
                    margin-bottom: 15px;
                }

                .review-text {
                    font-size: 15px;
                    line-height: 1.6;
                    color: #666;
                    margin-bottom: 20px;
                }

                .review-author {
                    font-weight: 600;
                    color: #333;
                    font-size: 14px;
                }

                .review-date {
                    font-size: 13px;
                    color: #999;
                    margin-top: 5px;
                }

                .no-reviews {
                    text-align: center;
                    color: #999;
                    font-size: 16px;
                    padding: 40px;
                }

            /* Mobile Responsive */
            @media (max-width: 992px) { /* Tablet and smaller laptop view */
                .sub-container { gap: 30px; } /* Adjust gap for medium screens */
                .text {
                    padding: 40px 30px; /* Reduce padding for medium screens */
                }
                .about-title {
                    font-size: 40px;
                }
                .text p {
                    font-size: 16px;
                }
            }

            @media (max-width: 768px) { /* Mobile phone view */
                .sub-container {
                    flex-direction: column;
                    margin: 0 auto; /* Remove top/bottom margin */
                    width: 100%; /* Make it full width */
                    border-radius: 0; /* Remove rounded corners for a flush look */
                    box-shadow: none; /* Remove shadow on mobile */
                    gap: 0;
                }
                .seller-image {
                    min-height: 300px; /* Reduced image height */
                    max-height: 60vh; /* Set a max height relative to viewport */
                    border-radius: 10px 10px 0 0; /* Re-apply top border radius */
                }
                .text {
                    padding: 30px 25px; /* Adjust padding for mobile */
                }
                .body_content {
                    padding: 0; /* Remove padding from the main content area */
                    background-color: #fff; /* Match the sub-container background */
                }
                .seller-image img {
                    max-width: 100%;
                }
                .about-title {
                    font-size: 32px;
                    text-align: center;
                }
                .credentials {
                    justify-content: center;
                }
                .reviews {
                    padding: 60px 20px;
                }

                .reviews-title {
                    font-size: 28px;
                }

                .reviews-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }