* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal overflow */
	background-color:white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    color:#000000;
	background-color:#fff;

}

.logo {
    font-size: 1.5rem;
	color:#666;
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color:#666;
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size:16px;
	font-style: normal;
	letter-spacing:0.1px;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

main {
    padding: 0px;
}

.box-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
	background-color:;
}


.box {
	flex: 1;
	height:auto;
    margin: 0 0px;
    padding: 5%;
    text-align: center;
	align-items: center;
	align-content: flex-start;
}

.box-30 {
    flex: 0 0 30%;
}

.bg-grad-blue {
background-image: linear-gradient(135deg, #e2d1c3 0%, #fdfcfb 100%);}

.bg-light{
	background-color:#f9f9ff;
}

.bg-family{
	background-image: url('img/family.webp');
	background-repeat: no-repeat;
	background-attachment: auto;
	background-position: center;
	background-size: cover;
min-height:300px;
}

.bg-about{
	background-image: url('img/grey.webp');
	background-repeat: no-repeat;
	background-attachment: auto;
	background-position: center;
	background-size: cover;
}

.title{
	color:#333;
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-size:28px;
	font-style: normal;
	line-height:21px;
    text-decoration: none;
	text-align:left;
	margin-top:20px;
	margin-bottom:20px;

}

.title-2{
	color:#333;
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-size:18px;
	font-style: normal;
	line-height:21px;
    text-decoration: none;
	text-align:left;
	margin-top:20px;
	margin-bottom:5px;

}

.description{
	color:#333;
	font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	font-size:14px;
	line-height:21px;
    text-decoration: none;
	text-align:left;
}

.descriptions li{
	color:#333;
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size:16px;
	font-style: normal;
	line-height:21px;
    text-decoration: none;
	text-align:left;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    background-color: #2c3134;
    color: white;
}

footer .box {
    flex: 1;
    margin: 0 10px;
}

footer .title {
    font-size: 1.2em;
    margin-bottom: 10px;
	color:white;
	text-align:left;

}

footer .description {
    font-size:  14px;
    line-height: 1.5;
	text-align:left;
	color:white;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .box {
        margin: 10px 0;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    max-width: 300px;
    background-color: #005f73;
    color: white;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar-links {
    list-style: none;
    text-align: center;
}

.sidebar-links li {
    margin: 20px 0;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    transition: display 0.3s ease;
}






@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .box-container {
        flex-direction: column;
    }

    .box {
        margin: 10px 0;
    }
}
