/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Zalando Sans", sans-serif;
    /* font-family: Helvetica, sans-serif; */
    /* font-family: Verdana, sans-serif; */
}

/* Styling for header image container */
.header-image-container {
	justify-content: center;
    text-align: center;
    margin-bottom: 10px; /* Adds space between the image and the tabs */
	display: flex; 
	align-items: center;
}

.header-left {
    background-color: #333;
    width: auto;      /* Maintains the aspect ratio */
    display: inline-block; /* Ensures the image is inline with the header */
    padding: 10px;
	font-size: 25px;
/*    border: 2px solid rgba(255, 255, 255, 0.2); /* Blends with the background */
/*    border-radius: 15px; /* Adds rounded edges */
}

.header-image {
    max-width: 40%;   /* Ensures the image doesn't overflow the header */
    height: auto;      /* Maintains the aspect ratio */
    display: inline-block; /* Ensures the image is inline with the header */
}

.header-right {
    background-color: #333;
    width: auto;      /* Maintains the aspect ratio */
    display: inline-block; /* Ensures the image is inline with the header */
    padding: 10px;
	font-size: 25px;
/*    border: 2px solid rgba(255, 255, 255, 0.2); /* Blends with the background */
/*    border-radius: 15px; /* Adds rounded edges */
}

/* Ensures the header still looks good with the centered image */
header {
    background-color: #333;
    color: white;
    padding: 10px;
    position: relative;
/*    background-image: url('burned background.jpg'); /* Path to your image */
/*    background-size: cover; /* Ensures the image covers the entire header */
/*    background-position: bottom; /* Centers the image in the header */
/*    background-repeat: no-repeat; /* Prevents the image from repeating */
}

nav {
    background-color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.nav-toggle {
    display: none;
}

nav ul.nav-links {
    background-color: #333;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #555;
}

.content {
    padding: 20px;
    /* background-color: #16e328; */
	background-image: url('background.JPG');
	background-size: cover;        /* Scales image to fill the screen */
	background-position: center;   /* Keeps the focal point centered */
	background-repeat: no-repeat;  /* Prevents tiling */
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

#tab1-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab1-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 28px;
    padding-left: 20px;   /* space from left border */
    padding-right: 20px;   /* space from right border */
    padding-bottom: 20px; /* space from bottom border */
}

#tab1-image-right {
    flex: 0 0 auto;
    font-size: 15px;
}

#tab1-image-right img {
    max-width: 450px;
    height: auto;
}

#tab1-bottom {
	width:75%;
	max-width:1100px;
    grid-column: 1 / -1; /* Span the entire width of the grid */
    text-align: left; 
    display: flex;
    flex-direction: column; /* Allows lists and text to flow properly */
    gap: 20px;
    width: 75%; /* Set to 75% of the container */
    margin: 0 auto; /* Center the bottom section horizontally */
    align-items: center; /* Center content horizontally within the section */
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab1-lists {
    display: flex;
    justify-content: space-between; /* Space the lists apart */
    gap: 20px; /* Add space between the lists */
	font-size: 20px;
}

#tab1-lists ul {
    flex: 1; /* Ensure equal width for both lists */
    list-style-type: disc;
    padding-left: 20px;
}

#tab2-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab2-top-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab2-top-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab2-top-text-box {
  padding: 15px;
}

#tab2-top-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab2-top-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab2-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab2-bottom-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab2-bottom-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab2-bottom-text-box {
  padding: 15px;
}

#tab2-bottom-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab2-bottom-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab3-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab3-top-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab3-top-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab3-top-text-box {
  padding: 15px;
}

#tab3-top-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab3-top-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab4-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab4-top-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab4-top-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab4-top-text-box {
  padding: 15px;
}

#tab4-top-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab4-top-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab5-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab5-top-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab5-top-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab5-top-text-box {
  padding: 15px;
}

#tab5-top-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab5-top-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab5-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab5-bottom-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab5-bottom-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab5-bottom-text-box {
  padding: 15px;
}

#tab5-bottom-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab5-bottom-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab6-top {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab6-top-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab6-top-container-right{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab6-top-text-box {
  padding: 15px;
}

#tab6-top-image-right {
	width: 100%;
	height: 400px;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

#tab6-top-image-right img {
	height: 100%;
	width: 100%;
	flex-shrink: 0;
	object-fit: cover;
	scroll-snap-align: start;
}

#tab7-top-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-1 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-1{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-1 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-1 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-2 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-2{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-2 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-2 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-3 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-3 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-3{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-3 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-3 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-4 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-4 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-4{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-4 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-4 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-5 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-5 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-5{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-5 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-5 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-6 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-6 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-6{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-6 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-6 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-7 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-7 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-7{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-7 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-7 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-8 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-8 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-8{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-8 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-8 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-9 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-9 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-9{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-9 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-9 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-10 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-10 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-10{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-10 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-10 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-11 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-11 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-11{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-11 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-11 img { /*Bryan photo different, had to position differently */
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

#tab7-top-12 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-12 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-12{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-12 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-12 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab7-top-13 {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
	border: 2px solid black;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238,238,238,0.9), rgba(153,153,153,0.9));
}

#tab7-top-text-left-13 {
    flex: 0 0 auto;
    max-width: 600px;
    font-size: 20px;
    padding-left: 20px;   /* space from left border */
    padding-bottom: 20px; /* space from bottom border */
    padding-right: 20px;   /* space from right border */
}

#tab7-top-container-right-13{
	display: flex;
	flex-direction: column;
	gap: 20px;          /* space between text and photos */
	width: 100%;        /* or whatever your right-side width is */
}

#tab7-top-image-right-13 {
	width: 100%;
	height: 500px;
	display: flex;
}

#tab7-top-image-right-13 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#tab2-lists {
    display: flex;
    justify-content: space-between; /* Space the lists apart */
    gap: 20px; /* Add space between the lists */
	font-size: 20px;
}

#tab2-lists ul {
    flex: 1; /* Ensure equal width for both lists */
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    /* bottom: 0; */
}

footer img {
	width: 100%;
	height: auto;
	display: block; /* removes bottom whitespace */
}

@media (max-width: 843px) {
    .header-image-container {
        flex-direction: column;
        gap: 10px;
    }

    .header-left,
    .header-right {
        text-align: center;
        padding: 5px 10px;
		white-space: normal;
    }

    .header-image {
        max-width: 80%;
    }
	
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        padding: 10px;
        cursor: pointer;
    }

    nav ul.nav-links {
        display: none;           /* collapsed by default */
		flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul.nav-links li a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
	
	a[href^="tel"] {
	  color: inherit;
	  text-decoration: none;
	  font-weight: inherit;
	}

    #tab1-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab1-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab1-image-right {
        flex: 0 0 auto;
    }

    .main-photo img {
        max-width: 450px;
		width: 100%;
		height: auto;
		display: block;
    }

    #tab2-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab2-top-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab2-top-image-right {
        flex: 0 0 auto;
    }

    #tab2-top-image-right img {
        max-width: 450px;
    }

    #tab2-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab2-bottom-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab2-bottom-image-right {
        flex: 0 0 auto;
    }

    #tab2-bottom-image-right img {
        max-width: 450px;
    }

    #tab3-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab3-top-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab3-top-image-right {
        flex: 0 0 auto;
    }

    #tab3-top-image-right img {
        max-width: 450px;
    }

    #tab4-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab4-top-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab4-top-image-right {
        flex: 0 0 auto;
    }

    #tab4-top-image-right img {
        max-width: 450px;
    }

    #tab5-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab5-top-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab5-top-image-right {
        flex: 0 0 auto;
    }

    #tab5-top-image-right img {
        max-width: 450px;
    }

    #tab5-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab5-bottom-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab5-bottom-image-right {
        flex: 0 0 auto;
    }

    #tab5-bottom-image-right img {
        max-width: 450px;
    }

    #tab6-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab6-top-text-left {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab6-top-image-right {
        flex: 0 0 auto;
    }

    #tab6-top-image-right img {
        max-width: 450px;
    }

    #tab7-top-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-1 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-1 {
        /* flex: 0 0 auto; */
		display: flex;
		justify-content: center;
		width: 100%;
    }

    #tab7-top-image-right-1 img {
        max-width: 100%;
		width: 450px;
		height: auto;
		display: block;
    }

    #tab7-top-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-2 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-2 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-2 img {
        max-width: 450px;
    }

    #tab7-top-3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-3 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-3 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-3 img {
        max-width: 450px;
    }

    #tab7-top-4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-4 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-4 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-4 img {
        max-width: 450px;
    }

    #tab7-top-5 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-5 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-5 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-5 img {
        max-width: 450px;
    }

    #tab7-top-6 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-6 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-6 {
        flex: 0 0 auto;
 		display: flex;
		justify-content: center;
   }

    #tab7-top-image-right-6 img {
        max-width: 450px;
    }

    #tab7-top-7 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-7 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-7 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-7 img {
        max-width: 450px;
    }

    #tab7-top-8 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-8 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-8 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-8 img {
        max-width: 450px;
    }

    #tab7-top-9 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-9 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-9 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-9 img {
        max-width: 450px;
    }

    #tab7-top-10 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-10 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-10 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-10 img {
        max-width: 450px;
    }

    #tab7-top-11 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-11 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-11 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-11 img {
        max-width: 450px;
    }

    #tab7-top-12 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-12 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-12 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-12 img {
        max-width: 450px;
    }

    #tab7-top-13 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tab7-top-text-left-13 {
        max-width: 100%;
        flex: 0 0 auto;
		font-size: 15px;
    }

    #tab7-top-image-right-13 {
        flex: 0 0 auto;
		display: flex;
		justify-content: center;
    }

    #tab7-top-image-right-13 img {
        max-width: 450px;
    }

	body #mobile-menu.open { 
        display: flex !important; /* This MUST win now */
        width: 100%;
        background-color: #333;
        z-index: 1000;
	}
}
