* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
	z-index: 1001;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
	cursor: pointer;	
}

a {
    cursor: pointer;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background-color: #0292b7;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
	cursor: pointer;	
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    text-align: center;
    margin-bottom: 100px;
    padding: 30px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-header {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    background-color: #111;
    padding: 20px;
    margin-bottom: 2px;
    cursor: pointer;
    border-left: 5px solid #0292b7;
    font-size: 18px;
	cursor: pointer;	
}

.primary-content {
    font-family: 'Poppins', sans-serif;
    background-color: #222;
    padding: 20px;
    display: none;
    border-left: 5px solid #0292b7;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.accordion-content {
    font-family: 'Poppins', sans-serif;
    background-color: #222;
    padding: 20px;
    display: none;
    border-left: 5px solid #0292b7;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.accordion-content.active {
    display: block;
    max-height: 1000px;
}

.about {
    background-color: #111;
    padding: 30px;
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;	
}

.blog2 {
    background-color: #111;
    padding: 30px;
    margin-top: 0px;
    font-family: 'Poppins', sans-serif;	
}

.mid-page-button {
    background-color: #111;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
	cursor: pointer;
}

.consultation {
    background-color: #111;
    padding: 40px;
    margin-top: 60px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;	
}

.consultation input, select {
    background-color: #111;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;	
}

.consultation button {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background-color: #0292b7;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
	cursor: pointer;	
}

.consultation h2 {
    margin-bottom: 20px;
}

#consultationForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
	background: linear-gradient(180deg,rgba(255,255,255,0) 65%, #0292b7 65%);
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    padding: 10px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #0292b7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
	cursor: pointer;	
}

button:hover {
    background-color: #fff; /* Different hover style for the CTA button */
    color: #0292b7; /* Your brand blue color for text */
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
}

/* Blog list page styles */
.blog-list article {
    margin-bottom: 2em;
    padding: 1em;
    background-color: #111;
    border-left: 5px solid #0292b7;
}

.blog-list h2 {
    margin-top: 0;
}

.blog-list a {
    color: #fff;
    text-decoration: none;
}

.blog-list a:hover {
    color: #0292b7;
}

/* Mobile menu styles */
#burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

#burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#menu-overlay.hidden {
    display: none;
}

.mobile-cta {
    display: none;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
		flex-wrap: wrap; 
    }
	
    .logo {
        flex: 0 1 auto; 
    }	

    #burger-menu {
        display: block;
		margin-left: auto;
    }

    nav {
        display: none;
        width: 100%; 
        order: 3; 
    }

    #menu-overlay nav {
        display: block;
    }

    #menu-overlay ul {
        flex-direction: column;
        align-items: center;
    }

    #menu-overlay li {
        margin: 20px 0;
    }

    header .cta-button {
        display: none;
    }

    .mobile-cta {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .accordion-header {
        padding: 15px;
        font-size: 16px;
    }

    .primary-content, .accordion-content {
        padding: 15px;
    }

    .consultation {
        padding: 20px;
    }

    input, select, button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    #menu-overlay li {
        margin: 20px 0;
		font-family: 'Poppins', sans-serif;		
    }
	
}

/* Ensure desktop elements are visible on larger screens */
@media screen and (min-width: 769px) {
    #burger-menu, #menu-overlay, .mobile-cta {
        display: none;
    }

    nav, .cta-button {
        display: flex;
    }

    nav ul li a {
        padding: 10px 15px; /* Add some padding for a larger hover area */
        transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    }

    nav ul li a:hover {
        background-color: #0292b7; /* Your brand blue color */
        color: #fff; /* Ensure text is visible on the blue background */
    }

    /* Style for the CTA button in the nav */
    nav ul li a.cta-button:hover, a.cta-button:hover, consultationForm.button {
        background-color: #fff; /* Different hover style for the CTA button */
        color: #0292b7; /* Your brand blue color for text */
		text-align: center;
    }	
}