        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Barlow", "Helvetica Neue", Helvetica, Arial, "Segoe UI", "Roboto", sans-serif;
            line-height: 1.6;
            color: #333;
            background: white;
        }

        /* Main container with max-width constraint */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }

        /* Navbar Styles - full width within container */
        .navbar {
            background: url('/img/nav_bg.png') center/cover;
            padding: 1rem 1.7rem;
            position: relative;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 75px;
            width: 100%;
        }

        .logo {
            width: 115px;
            height: 60px;
            background: url('/img/budamilllogo.png') center/contain no-repeat;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: #6d6868;
            font-size: .8rem;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .social-icons {
            display: flex;
            gap: .5rem;
        }

        .social-icons a {
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .social-icons img {
            width: 24px;
            height: 24px;
            display: block;
        }

        .social-icons a:hover {
            background: rgba(255,255,255,0.1);
            transform: scale(1.1);
        }

        /* Hamburger Menu (Hidden by default) */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hero-image {
            width: 100%;
            height: auto;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: white;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        /* Hero text overlay */
        .hero-text {
            position: absolute;
            top: 9rem;
            right: 10rem;
            font-size: 3rem;
            color: #020202;
            z-index: 100;
						letter-spacing: .1rem;
        }
				
				.hero-text-press {
						position: absolute;
						top: 2rem;
						right: 3rem;
						font-size: 3.5rem;
						color: #020202;
						z-index: 100;
						letter-spacing: .1rem;
				}
				
        .hero-text-about {
            position: absolute;
            top: 4.4rem;
            right: 5rem;
            font-size: 3.5rem;
            color: #020202;
            z-index: 100;
						letter-spacing: .1rem;
        }
				.hero-text-contact {
            position: absolute;
            top: 2.5rem;
            right: 5rem;
            font-size: 3rem;
            color: white;
            z-index: 100;
						letter-spacing: .1rem;	
					
				}
				.hero-text-avail {
            position: absolute;
            top: 2.5rem;
            right: 5rem;
            font-size: 3rem;
            color: white;
            z-index: 100;
						letter-spacing: .1rem;	
					
				}

        /* Content Section - inset from hero image edges */
        .content {
            background: white;
            padding: 3rem 8%;
            width: 100%;
        }

        .content p, .content a, .content h2 {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: justify;
            color: #6d6868;
            line-height: 1.8;
            text-decoration: none;
        }
				
        .content a:hover {
            color: #f52e04;
        }
				
				#findus-text {
					font-size: 3.5rem;
					font-weight: 500;
				}
				#contact-text {
					font-size: 4rem;
					color: #000;
					font-weight: 500;
				}
				
				#bm_map {
					width:85%;
				}
				
				#address-block {
						position:relative;
						float:right;
						bottom:20rem;
						right:3rem;
						color:white;
						font-size:1.1rem;
						line-height: 2.6rem;
				}
				
				#footer_insta {
					position:relative;
					right:3.2rem;
					top:3.6rem;
				}
				
				#footer_fbook {
					position: relative;
					right:6.2rem;
					top:6.2rem;
					
				}
				


        /* Medium screen styles - handle nav link wrapping */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-links a {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }
        }

        /* Mobile menu styles */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: transparent;
            z-index: 999;
            padding: 1rem 0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
						background:white;
        }

        .mobile-menu li {
            /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        .mobile-menu li:last-child {
            border-bottom: none;
        }

        .mobile-menu a {
            display: block;
            padding: .2rem 2rem;
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: .8rem;
        }

        .mobile-menu a:hover {
            background: transparent;
            color: #f52e04;
        }

        /* Mobile Styles */
        @media (max-width: 900px) {
            .navbar {
                padding: 1rem;
                position: relative;
                display: flex;
                align-items: center;
            }

            .hamburger {
                display: flex;
                position: absolute;
                left: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 100px;
                height: 45px;
            }

            .social-icons {
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-links {
                display: none;
            }

            .hero-image {
               /* height: 50vh;*/
						}

            .hero-text {
                font-size: 2rem;
								top:2rem;

            }
						.hero-text-about {
							font-size: 2rem;
							top:1.5rem;
							right:3rem;
						}
						.hero-text-contact {
								font-size:2rem;
								top:1.5rem;
								right:3rem;
						}
						.hero-text-avail {
							font-size: 2rem;
							top: 1.5rem;
							right:3rem;
						}
            .content {
                padding: 2rem 6%;
            }

            .content p {
                text-align: left;
                font-size: 1rem;
            }
        }
				


        @media (max-width: 600px) {
            .logo {
                width: 80px;
                height: 38px;
            }

            .social-icons img {
                width: 20px;
                height: 20px;
            }

            .hero-image {

								min-height: 20vh;
								display: block;
            }

            .hero-text {
                font-size: 1.8rem;
                top: 2rem;
                right: 3rem;
            }
						.hero-text-about {
								font-size: 1.8rem;
								top: .8rem;
								right:1.5rem;
						}
						.hero-text-contact {
								font-size: 1.5rem;
								top:.8rem;
								right:1.5rem;
							
						}
						.hero-text-avail {
								font-size: 1.8rem;
								top:1.2rem;
								right:1.5rem;
						}
            .content {
                padding: 1rem 5%;
            }

            .content p {
                font-size: 0.9rem;
            }
        }

        /* Large screen optimization */
        @media (min-width: 1400px) {
            .content {
                padding: 3rem 10%;
            }
        }
