/* Make box-sizing predictable and prevent horizontal overflow */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 25px;
    margin-top:5px;
    padding: 0;
    overflow-x: hidden; /* prevent a stray horizontal/left bar from overflow */
}

body {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3ef 50%, #fdfcfa 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* keep content from centering vertically */
    align-items: stretch; /* allow children to take full width (no left gap) */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 0; /*make body ease in at refresh*/
    transition: opacity 1.05s ease-in; /*make body ease in at refresh*/
}

body.loaded {
    opacity: 1;/*make body ease in at refresh*/
}


        /* Header/Navigation */
        .firstbanner {
            display: flex;
            flex-direction: column;
            color: white;
            height: clamp(400px, 60vh, 800px);
            width: 100%;
            box-shadow: 0 8px 40px rgba(139, 119, 85, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            top: 0;
            z-index: 1000;
            overflow: hidden;
            border-radius: 30px;
        }

        /* Carousel Styles */
        .carousel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .carousel-container * {
            pointer-events: auto;
        }

        .carousel-slides {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: block;
            text-decoration: none;
            cursor: pointer;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        /* Navigation Arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26, 77, 62, 0.5);
            color: white;
            border: 1px solid rgba(201, 169, 98, 0.3);
            font-size: 24px;
            padding: 16px 20px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border-radius: 5px;
            backdrop-filter: blur(5px);
        }

        .carousel-nav:hover {
            background: rgba(201, 169, 98, 0.7);
            transform: translateY(-50%) scale(1.1);
            border-color: #c9a962;
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        /* Dot Indicators */
        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(201, 169, 98, 0.6);
        }

        .dot:hover {
            background: rgba(201, 169, 98, 0.7);
            transform: scale(1.2);
        }

        .dot.active {
            background: #c9a962;
            transform: scale(1.3);
            border-color: #d4b872;
        }


        .logo {
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 10px;
            position: relative;
            z-index: 100;
        }

        .logo img {
            max-height: clamp(60px, 10vw, 150px);
            width: auto;
            object-fit: contain;
            filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .menu {
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 0;
            position: relative;
            z-index: 100;
            /* background: rgba(255, 255, 255, 0.05); */
            /* backdrop-filter: blur(1px); */
        }

        #menuitems {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 100px;
        }

        #menuitems li a {
            display: block;
            color: white;
            padding: 16px 28px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: 1000;
            font-size: 20px;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        #menuitems li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #c9a962 0%, #d4b872 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        #menuitems li a:hover::before {
            left: 0;
        }

        #menuitems li a:hover {
            color: white;
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 8px 20px rgba(201, 169, 98, 0.4);
        }

        /* Product Highlight Section */
        .producthighlight {
            background: linear-gradient(to right, #fdfcfa 0%, #faf8f5 50%, #ffffff 100%);
            height: auto;
            display: flex;
            width: 100%;
            max-width: 1400px;
            box-shadow: 0 15px 50px rgba(139, 119, 85, 0.12), 0 5px 20px rgba(0, 0, 0, 0.05);
            border-radius: 30px;
            margin: 50px auto;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 98, 0.15);
        }

        .imagehighlight {
            height: 700px;
            flex: 1;
            background: transparent;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
            cursor: pointer;
            padding: 50px;
            position: relative;
        }

        .imagehighlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .imagehighlight img {
            width: 100%;
            height: 95%;
            border-radius: 25px;
            object-fit: cover;
            box-shadow: 0 20px 50px rgba(139, 119, 85, 0.2);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .imagehighlight img:hover {
            transform: scale(1.02) rotateZ(0.5deg);
            box-shadow: 0 25px 60px rgba(201, 169, 98, 0.35);
        }

        .imagehighlightdescription {
            background: transparent;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            position: relative;
            
            
        }

        .imagehighlightdescription h1 {
            font-size: 48px;
            color: #1a4d3e;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(26, 77, 62, 0.08);
        }

        .imagehighlightdescription h3 {
            font-size: 26px;
            color: #b8975c;
            margin-bottom: 25px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .imagehighlightdescription p {
            font-size: 17px;
            color: #4a5568;
            line-height: 2;
        }

        /* Main Content Section */
        .maincontent {
            background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
            height: auto;
            color: white;
            display: flex;
            flex-direction: column;
            width: 100%;
            /* max-width: 1400px; */
            box-shadow: 0 15px 50px rgba(139, 119, 85, 0.12), 0 5px 20px rgba(0, 0, 0, 0.05);
            border-radius: 30px;
            /* margin-left:25px;

            margin-top:25px;
            margin-bottom:25px; */
            padding: 60px 40px;
            border: 1px solid rgba(201, 169, 98, 0.15);
        }

        .maincontenttext {
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 0 20px 50px;
            text-align: center;
        }

        .maincontenttext h1 {
            font-size: 46px;
            color: #1a4d3e;
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(26, 77, 62, 0.08);
        }

        .maincontenttext h3 {
            font-size: 26px;
            color: #b8975c;
            margin-bottom: 25px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .maincontenttext p {
            color: #4a5568;
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 2;
        }

        .maincontentimages {
            background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 1px;
            padding: 20px 5px;
            flex-wrap: wrap;
        }

        .maincontentimages figure {
            border: 0;
            padding: 20px;
            margin: 10px;
            text-align: center;
            /* background: linear-gradient(135deg, #f0fff4 0%, #ecfdf5 100%); */
            background: transparent;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            /* box-shadow: 0 10px 30px rgba(167, 243, 208, 0.2); */
            position: relative;
            overflow: hidden;
        }

        .maincontentimages figure::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(167, 243, 208, 0.1) 0%, rgba(110, 231, 183, 0.1) 100%); */
            background: transparent;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .maincontentimages figure:hover::before {
            opacity: 0;
        }

        .maincontentimages figure:hover {
            transform: translateY(-15px) scale(1);
            /* box-shadow: 0 25px 50px rgba(223, 244, 234, 0.4); */
        }

        .maincontentimages img {
            border-radius: 50%;
            width: 120px;
            height: 120px;
            object-fit: cover;
            box-shadow: 0 15px 40px rgba(139, 119, 85, 0.2);
            transition: all 1s ease;
            cursor: pointer;
            border: 3px solid rgba(201, 169, 98, 0.3);
            position: relative;
            z-index: 1;
        }

        .maincontentimages img:hover {
            transform: scale(1) rotateZ(5deg);
            box-shadow: 0 25px 60px rgba(201, 169, 98, 0.4);
            border-color: #c9a962;
        }

        figcaption {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            color: #1a4d3e;
            margin-top: 15px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        /* Newsletter Section */
        .newsletter {
            margin: 50px auto;
            padding: 60px 50px;
            background: linear-gradient(135deg, #1a4d3e 0%, #15423a 50%, #0f3330 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 600px;
            max-width: 90%;
            border-radius: 30px;
            color: white;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 20px 60px rgba(26, 77, 62, 0.35), 0 10px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 98, 0.2);
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .newsletter:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 30px 80px rgba(26, 77, 62, 0.45), 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .newslettertext {
            text-align: center;
            margin-bottom: 30px;
            font-size: 20px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
            line-height: 1.6;
        }
        #facebook{
            /* height: 20px;
            width:92px;
            background: blue;
            color: white;
            text-align: center;
            cursor: pointer; */
            height: auto;
            padding: 8px 16px;
            background: #1481e6;
            color: white;
            text-align: center;
            cursor: pointer;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
            width: auto;

        }
        #facebook:hover {
        background: #166fe5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

       
        .signup-form {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 450px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .signup-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.98);
            color: #1a4d3e;
        }

        .signup-form input:focus {
            outline: none;
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
            transform: translateY(-2px);
        }

        .signup-form input::placeholder {
            color: #9ca3af;
        }

        .signup-form button {
            padding: 15px 20px;
            background: linear-gradient(135deg, #c9a962 0%, #d4b872 100%);
            border: none;
            border-radius: 10px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            color: white;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 14px;
            box-shadow: 0 8px 20px rgba(201, 169, 98, 0.3);
        }

        .signup-form button:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 15px 35px rgba(201, 169, 98, 0.45);
            background: linear-gradient(135deg, #d4b872 0%, #dfc382 100%);
        }

        .facebook-link {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .facebook-link p {
            font-size: 15px;
            font-weight: 500;
        }

        .facebook-link a {
            color: #e8d5a8;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .facebook-link a:hover {
            border-bottom-color: #c9a962;
            color: white;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a4d3e 0%, #15423a 50%, #0f3330 100%);
            width: 100%;
            padding: 50px 30px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 30px;
            box-shadow: 0 -5px 40px rgba(26, 77, 62, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.2);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #c9a962, transparent);
        }

        .footer-content {
            width: 100%;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .footer-title {
            color: #c9a962;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .footer-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(201, 169, 98, 0.2);
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            background: rgba(201, 169, 98, 0.15);
            border-color: #c9a962;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 169, 98, 0.2);
        }

        .footer-link i {
            font-size: 22px;
            color: #c9a962;
        }

        .footer-link span {
            font-weight: 500;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            margin: 0;
            padding-top: 20px;
            border-top: 1px solid rgba(201, 169, 98, 0.15);
        }

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 200;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: linear-gradient(90deg, #ffffff 0%, #e8d5a8 100%);
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -8px);
        }

        /* Responsive Design - Laptop/Desktop (1024px+) */
        @media (min-width: 1025px) {
            .producthighlight {
                flex-direction: row;
            }

            .imagehighlight {
                height: 700px;
            }

            #menuitems {
                gap: 60px;
            }

            #menuitems li a {
                font-size: 18px;
                padding: 14px 24px;
            }
        }

        /* Tablet (769px - 1024px) */
        @media (max-width: 1024px) {
            html, body {
                margin: 15px;
            }

            #menuitems {
                gap: 30px;
            }

            #menuitems li a {
                padding: 12px 20px;
                font-size: 14px;
            }

            .producthighlight {
                flex-direction: column;
                margin: 30px auto;
            }

            .imagehighlight {
                height: 400px;
                padding: 30px;
            }

            .imagehighlightdescription {
                padding: 40px;
            }

            .imagehighlightdescription h1 {
                font-size: 36px;
            }

            .imagehighlightdescription h3 {
                font-size: 22px;
            }

            .maincontenttext h1 {
                font-size: 36px;
            }

            .maincontent {
                padding: 40px 30px;
            }

            .maincontentimages figure {
                padding: 15px;
                margin: 8px;
            }

            figcaption {
                font-size: 13px;
            }
        }

        /* Mobile (768px and below) */
        @media (max-width: 768px) {
            html, body {
                margin: 10px;
            }

            .firstbanner {
                height: clamp(350px, 55vh, 550px);
            }

            .hamburger {
                display: flex;
            }

            .menu {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 77, 62, 0.97);
                backdrop-filter: blur(10px);
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 150;
            }

            .menu.active {
                opacity: 1;
                visibility: visible;
            }

            .hamburger {
                z-index: 200;
            }

            #menuitems {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            #menuitems li a {
                padding: 15px 30px;
                font-size: 18px;
                display: block;
            }

            .logo {
                padding: 20px 10px;
            }

            .logo img {
                max-height: clamp(50px, 12vw, 100px);
            }

            .carousel-nav {
                font-size: 18px;
                padding: 12px 16px;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }

            .carousel-dots {
                bottom: 20px;
                gap: 8px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .producthighlight {
                flex-direction: column;
                margin: 20px auto;
                border-radius: 20px;
            }

            .imagehighlight {
                height: auto;
                padding: 20px;
            }

            .imagehighlight img {
                height: auto;
                object-fit: contain;
            }

            .imagehighlightdescription {
                padding: 25px;
            }

            .imagehighlightdescription h1 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .imagehighlightdescription h3 {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .imagehighlightdescription p {
                font-size: 15px;
                line-height: 1.8;
            }

            .maincontent {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .maincontenttext {
                padding: 0 10px 30px;
            }

            .maincontenttext h1 {
                font-size: 28px;
            }

            .maincontenttext h3 {
                font-size: 18px;
            }

            .maincontenttext p {
                font-size: 15px;
            }

            .maincontentimages {
                gap: 0;
                padding: 10px 0;
            }

            .maincontentimages figure {
                width: calc(50% - 20px);
                padding: 15px 10px;
                margin: 5px;
            }

            .maincontentimages img {
                width: 90px;
                height: 90px;
            }

            figcaption {
                font-size: 12px;
                margin-top: 10px;
            }

            .newsletter {
                padding: 30px 20px;
                margin: 30px auto;
                border-radius: 20px;
                width: 100%;
            }

            #newslettertext {
                font-size: 16px;
            }

            .signup-form {
                flex-direction: column;
                gap: 12px;
            }

            .signup-form input,
            .signup-form button {
                width: 100%;
                padding: 14px 18px;
            }

            .facebook-link p {
                font-size: 14px;
            }

            footer {
                padding: 35px 20px;
                border-radius: 20px;
            }

            .footer-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .footer-link {
                padding: 10px 20px;
                font-size: 15px;
            }

            .footer-link i {
                font-size: 20px;
            }

            .footer-copyright {
                font-size: 12px;
            }
        }

        /* Small phones (480px and below) */
        @media (max-width: 480px) {
            html, body {
                margin: 8px;
            }

            .firstbanner {
                height: clamp(300px, 50vh, 450px);
                border-radius: 15px;
            }

            .hamburger {
                top: 15px;
                right: 15px;
            }

            .logo {
                padding: 15px 10px;
            }

            .logo img {
                max-height: 60px;
            }

            .carousel-nav {
                font-size: 16px;
                padding: 10px 14px;
            }

            .carousel-dots {
                bottom: 15px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .producthighlight {
                border-radius: 15px;
                margin: 15px auto;
            }

            .imagehighlight {
                height: auto;
                padding: 15px;
            }

            .imagehighlight img {
                height: auto;
                object-fit: contain;
                border-radius: 15px;
            }

            .imagehighlightdescription {
                padding: 20px;
            }

            .imagehighlightdescription h1 {
                font-size: 24px;
            }

            .imagehighlightdescription h3 {
                font-size: 16px;
            }

            .imagehighlightdescription p {
                font-size: 14px;
            }

            .maincontent {
                padding: 25px 15px;
                border-radius: 15px;
            }

            .maincontenttext h1 {
                font-size: 24px;
            }

            .maincontenttext h3 {
                font-size: 16px;
            }

            .maincontenttext p {
                font-size: 14px;
            }

            .maincontentimages figure {
                width: calc(50% - 16px);
                padding: 12px 8px;
                margin: 4px;
            }

            .maincontentimages img {
                width: 70px;
                height: 70px;
            }

            figcaption {
                font-size: 11px;
            }

            .newsletter {
                padding: 25px 15px;
                border-radius: 15px;
            }

            #newslettertext {
                font-size: 14px;
            }

            .signup-form input,
            .signup-form button {
                padding: 12px 15px;
                font-size: 14px;
            }

            .signup-form button {
                font-size: 12px;
            }

            #facebook {
                padding: 6px 12px;
                font-size: 12px;
            }

            footer {
                border-radius: 15px;
                padding: 30px 15px;
            }

            .footer-title {
                font-size: 18px;
                letter-spacing: 2px;
                margin-bottom: 18px;
            }

            .footer-links {
                gap: 12px;
                margin-bottom: 25px;
            }

            .footer-link {
                padding: 10px 15px;
                font-size: 14px;
                gap: 10px;
            }

            .footer-link i {
                font-size: 18px;
            }

            .footer-copyright {
                font-size: 11px;
                padding-top: 15px;
            }

            footer p {
                font-size: 14px !important;
            }

            footer i {
                font-size: 20px !important;
            }
        }