        /* Basic Reset */
        body, * {
	    font-family: arial,helvetica,san serif;
            max-width:1200px;
            margin: 0 auto;
            padding: 0;
            box-sizing: border-box;
        }
        strong{font-style:bold;}
	.clear {clear:both;}

         /* Navigation Styles */
        nav {
            background-color: #333;
            padding: 10px 0;
            text-align: center;
        }
        nav ul {
            list-style-type: none;
        }
        nav ul li {
            display: inline-block;
            position: relative;
            margin-right: 20px;
            text-align:left;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 10px;
            display: block;
        }
        nav ul li a:hover {
            background-color: #555;
        }
        nav ul ul {
            display: none;
            position: absolute;
            background-color: #333;
            z-index: 1000;
            left: 0;
            width: 200px;
            padding: 0;
        }
        nav ul ul li {
            display: block;
            width: 100%;
        }
        nav ul ul li a {
            padding: 10px 20px;
        }
        nav ul li:hover > ul {
            display: block;
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            margin: 20px auto;
            width: 80%;
            max-width: 1000px;
            overflow: hidden; /* Ensure content doesn't overflow on smaller screens */
        }
        .carousel-images {
            display: flex;
            overflow: hidden;
        }
        .slide {
            flex: 0 0 100%;
            transition: transform 0.5s ease;
            position: relative;
        }
        .slide img {
            width: 100%;
            display: block;
        }
        .caption {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.45);
            color: #fff;
            padding: 10px;
            width: 90%;
            text-align: center;
        }
        .carousel button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 24px;
            padding: 10px;
            z-index: 1;
        }
        .carousel button.prev {
            left: 10px;
        }
        .carousel button.next {
            right: 10px;
        }

        /* Content Section */
        .content {
            display: flex;
            flex-wrap: wrap;
            padding: 12px;
            font-size: 14px;
	    line-height: 1.4;
	    width=100%;
	    max-width=980px;
        }
        .text-block {
	    width: 50%; /* Limit width on larger screens */
            padding: 0px 6px 0px 6px;
            background-color: #f0f0f0;
        }
        .text-block h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .text-block p {
            font-size: 14px;
            line-height: 1.4;
        }
        .imagine{background:#99cccc;
        padding:20px 12px 12px 12px;
        }

        /* Footer Styles */
        footer {
            margin-top:18px;
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            margin-bottom:36px;
        }
        footer p {
            margin: 0;
            font-size: 14px;
        }

        /* Responsive Adjustments */
        @media (max-width: 680px) {
            .carousel button {
                font-size: 18px;
            }
            .text-block {
               width: 100%; /* Take full width on smaller screens */
            }
        }


        /* Styling for the exteriors page gallery */

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
            grid-gap: 20px;
        }

        .gallery img {
            width: 100%;
            margin-left:auto;
            margin-right:auto;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            margin-bottom:20px;
            border:1px solid black;
        }


/* FORM CONTENT */

        form {
            max-width: 300px;
            margin: 0 auto;
        }
         .form-group {
	    margin-bottom: 15px;
	  }
	  .form-group label {
	    display: block;
	    margin-bottom: 5px;
	    font-weight: bold;
	  }
	  .form-group input,
	  .form-group textarea {
	    width: calc(100% - 12px);
	    padding: 8px;
	    border: 1px solid #ccc;
	    border-radius: 4px;
	    font-size: 14px;
	  }
	  .form-group textarea {
	    height: 100px;
	  }
	  .form-group .half-width {
	    width: calc(50% - 6px);
	    display: inline-block;
	    margin-right: 10px;
	  }
	  .form-group .half-width input {
	    width: 100%;
  }
        label {
            display: block;
            margin-bottom: 5px;
        }
        
        input[type="text"],
        input[type="email"],
        textarea,
        input[type="file"] {
            width: calc(100% - 20px);
            padding: 8px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        
        input[type="submit"] {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        
        input[type="submit"]:hover {
            background-color: #45a049;
        }
        
        .error {
            color: red;
            font-size: 12px;
            margin-top: 5px;
        }