/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section 1 */
.top-banner {
    background-color: black;
    color: #f5f5f5; /* off-white */
    font-size: 14px;
    text-align: center;
    line-height: 37px;
    height: 37px;
}

/* Section 2 */
.section-2 {
    background-color: white;
    height: 95px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    height: 50px;
	padding-right: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}
.search-container {
 /*   width: 100%;
    max-width: 600px; */
    padding: 0 20px;
}

.search-form {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    background-color: white;
	padding-right: 0px;
	padding-left: 10px;
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    outline: none;
	text-align: left;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    background-color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #f0f0f0;
}

.search-button i {
    color: #333;
    font-size: 18px;
}

.phone-number {
    font-size: 16px;
	padding-left: 10px;
}

/* Section 3 */
.section-3 {
    margin: 0 50px;
}

.section-3 img {
    width: 100%;
    height: auto;
}

/* Spacer */

.spacer-10 {
    height: 10px;
}

.spacer-20 {
    height: 20px;
}

.spacer-30 {
    height: 30px;
}

.spacer-40 {
    height: 40px;
}

/* Section 4 */
.search-section {
    height: 100px;
    border: 2px solid darkblue;
    border-radius: 10px;
    padding: 20px;
    margin: 0 50px;
    box-sizing: border-box;
}

.search-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
}

.dropdown {
    display: flex;
    flex-direction: column;
}

.dropdown label {
    font-size: 16px;
    margin-bottom: 5px;
}

.dropdown select {
    width: 25ch;
    padding: 8px;
    background-color: #304d6d; 
    color: white; /* Text color */
    border: 1px solid #ccc;
    border-radius: 5px;
}
/*
.search-button {
    background-color: light blue;
    color: white;
    border: 2px solid light blue;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}
*/

.search-button2 {
    all: unset;
	background-color: #304d6d;
    color: white;
    border: 2px solid darkblue;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
	margin-top: 13px;
}

/* Section 5 */

.section-5a {
    margin: 0 50px;
	border: 2px solid #0d47a1; /* Dark blue border */
    padding: 5px; /* Optional: adds space inside the border */
	border-radius: 10px;
	background-color: #e1e5f2;
}

.section-5a h2 {
    margin-left: 13px; /* Moves the text 10 pixels to the right */
}

.section-5 {
    margin: 0 50px;
    max-width: 1600px;
}

.section-5 h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.product {
    border: 2px solid darkblue;
    padding: 10px;
    width: calc(25% - 20px);
    box-sizing: border-box;
    text-align: left;
	border-radius: 10px;
}

.product img {
    width: 100%;
    height: auto;
}

.product-info {
    text-align: left;
}

.compare-button {
    background-color: #0d47a1;
    border: 2px solid darkblue;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Section 6 */
/* General footer styles */
.section-6 {
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    padding: 20px 0 40px; /* Add 50px padding-top to push content down, keep existing bottom padding */
    position: relative; /* Ensure padding affects layout */
}

.container {
    display: flex; /* Flexbox for alignment */
    flex-wrap: wrap; /* Wrap items to next line if needed */
    justify-content: space-between; /* Space between columns */
    max-width: 1200px; /* Maximum width of container */
    margin: 0 auto; /* Center the container */
}

/* General footer column styles */
.footer-column {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, and basis */
    margin: 0 15px; /* Margin between columns */
    min-width: 200px; /* Minimum width of columns */
   /* padding-top: 50px;  Padding top to ensure consistent distance from the top */
    box-sizing: border-box; /* Include padding in width calculation */
    display: flex; /* Flexbox to align items vertically */
    flex-direction: column; /* Stack items vertically */
}

/* Footer column headers */
.footer-column h3 {
    font-size: 18px; /* Font size for headings */
  /*  margin: -40px 0 15px;  Move headers up by 40px and add space below headings */
    color: #fff; /* White color for headings */
    border-bottom: 2px solid #fff; /* Border under headings for visual separation */
    padding-bottom: 10px; /* Padding below heading text */
}

/* Specific styles for each column */
.about-column h3 {
    margin-top: 0px; /* Adjust for "About" header */
}

.fridge-brands-column h3 {
    margin-top: 35px;
}

.fridge-types-column h3 {
    margin-top: -60px;
}

.contact-column h3 {
    margin-top: 33px;
}

/* List styles for each column */
.footer-column ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.footer-column ul li {
    margin-bottom: 10px; /* Space between list items */
}

.footer-column ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #fff; /* White color for links */
}

.footer-column ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Contact column styles */
.contact-column img {
    margin-top: 20px; /* Margin above the image */
    max-width: 150px; /* Smaller image width */
    height: auto; /* Maintain aspect ratio */
}

/* Footer copyright text */
.footer-copyright {
    text-align: center; /* Center the text */
    color: #fff; /* White color for text */
    padding: 20px 0 0; /* Padding for spacing above the text */
    margin-top: 30px; /* Move copyright text down by 30px */
    background-color: #000; /* Same background color as footer */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack columns on small screens */
    }
    .footer-column {
        margin-bottom: 30px; /* Space between stacked columns */
    }
}



	

