* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }

        
        dl, ol, ul {
            margin-bottom: 0rem !important;
        }



        header {
            background: #252526;
            color: white;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        nav ul li a:hover {
            color: #a59771;
        }

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger input {
            display: none;
        }

        #hamburger-toggle {
            display: none;
        }

        .hamburger-label {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
        }

        .hamburger-label span {
            background: white;
            height: 3px;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        #hamburger-toggle:checked ~ .nav-menu {
            display: flex;
        }

        #hamburger-toggle:checked ~ .hamburger-label span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        #hamburger-toggle:checked ~ .hamburger-label span:nth-child(2) {
            opacity: 0;
        }

        #hamburger-toggle:checked ~ .hamburger-label span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .intro {
            background: #f1efec;
            max-width: 100%;
            margin: 0;
            padding: clamp(2rem, 3vw, 2rem) clamp(1rem, 5vw, 4rem);
            text-align: center;
        }

        .intro-logo {
            display: block;
            max-width: 200px;
            margin: 0 auto 1rem;
        }

        .intro-logo {
            display: block;
            max-width: 200px;
            margin: 0 auto 1rem;
        }

        .cta-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: #a59771;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .cta-button:hover {
            background: #998b65;
        }

        section {
            padding: clamp(2rem, 5vw, 4rem) 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2 {
            text-align: center;
            color: #252526;
            font-size: clamp(1.5rem, 4vw, 2rem);
        }

        .about h2 {
            text-align: center;
        }

        .about-logo {
            display: block;
            max-height: 2.5em;
            margin: 0 auto 1rem;
        }

        .about-story1, .about-story2 {
            max-width: 1000px;
            margin: 0 auto;
            padding: 1rem 0; /* Add some vertical padding */
        }

        .story-content {
            display: flex;
            flex-direction: row; /* Ensure side-by-side on larger screens */
            align-items: center; /* Align items to the center vertically */
            gap: 1.5rem; /* Space between image and text */
        }

        .story-image {
            max-width: 300px; /* Adjust as needed */
            height: auto;
            border-radius: 5px;
            flex-shrink: 0; /* Prevent image from shrinking */
        }

        .story-image.left {
            margin-right: 1.5rem;
        }

        .story-image.right {
            margin-left: 1.5rem;
            order: 2; /* Place image after text on larger screens */
        }

        .story-text {
            flex-grow: 1; /* Allow text to take up remaining space */
            text-align: left; /* Align text to the left */
        }

        /* Adjust for smaller screens */
        @media (max-width: 768px) {
            .story-content {
                flex-direction: column; /* Stack image and text vertically */
                align-items: center; /* Center items when stacked */
            }

            .story-image {
                max-width: 80%; /* Make image take more width on small screens */
                margin: 0 0 1rem 0 !important; /* Remove side margins and add bottom margin */
            }

            .story-image.right {
                order: unset; /* Reset order for small screens */
            }

            .story-text {
                text-align: center; /* Center text on small screens */
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30vw, 250px), 1fr));
            gap: 2rem;
            text-align: center;
        }

        .service-item {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .service-item img {
            width: 100%;
            height: clamp(100px, 20vw, 150px);
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        .service-item h3 {
            margin-bottom: 1rem;
            color: #252526;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .about {
            background: #f1efec;
            max-width: 100%;
            margin: 0;
            padding: clamp(2rem, 3vw, 2rem) clamp(1rem, 5vw, 4rem);
            text-align: center;
        }

        .contact {
        }

        .contact form {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact input, .contact textarea {
            margin-bottom: 1rem;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .honeypot-field {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            width: 0;
            pointer-events: none;
        }

        .contact button {
            padding: 0.8rem;
            background: #a59771;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .contact button:hover {
            background: #998b65;
        }

        footer {
            background: #252526;
            color: white;
            text-align: center;
            padding: 1rem;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        

        

        @media (min-width: 769px) {
            .hamburger, .hamburger-label {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            nav ul {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #252526;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                z-index: 999;
            }

            .hamburger {
                display: flex;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .logo svg {
                width: clamp(100px, 25vw, 120px);
            }

            .service-item img {
                height: clamp(80px, 25vw, 100px);
            }

            section {
                padding: clamp(1.5rem, 4vw, 2rem) 0.5rem;
            }

            .inset-img {
                max-height: 200px;
                object-fit: contain;
            }
        }

#gallery {
    padding: 2rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item p {
    margin-top: 0.5rem;
    font-style: italic;
}

#lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80%;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

#quote-iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

