/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: sans-serif, Arial;
	font-size: 18px;
	max-width: 100vw;
        overflow-x: hidden;
	background-image: url("../images/watermark2.png");
	background-position: center 50px;
	background-repeat: repeat-y;
	color: #000;
}

html {
  overflow-x: hidden;
}

a {
	color: #428bca;
	text-decoration: none;
	outline: none;
}

p {
	padding: 20px;
}

.clear {
	display: none; /* replaced floats with flexbox */
}

/* Headings */
h1, h2, h3, h4 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #1F51AE;
	margin: 20px 0;
}

h1 {
	font-size: 35px;
	text-transform: uppercase;
	letter-spacing: -1px;
	word-spacing: 4px;
}

h2, .secondHeading h2 {
	font-size: 28px;
	text-transform: uppercase;
	word-spacing: 4px;
	margin-bottom: 10px;
	Margin-left: 10px;
}

.secondHeading h2 {
	font-size: 35px;
	margin: 0;
}

h3 {
	font-size: 20px;
	margin-bottom: 10px;
        Margin-left: 10px;
}

h4 {
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 1px;
	display: inline;
}

/* Flex utility classes */
.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-center {
	justify-content: center;
	align-items: center;
}

.space-between {
	justify-content: space-between;
}

.vertical-center {
	align-items: center;
}

/* Header */
header {
	background-color: #fff;
	border-bottom: 2px solid #1567A6;
	width: 100%;
	padding: 10px;
}

.contentWrap {
	display: flex;
        flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 50%;
	margin: 0 auto;
}

.navButton {
	background: transparent url('../images/menu.png') no-repeat center;
	background-size: contain;
	width: 50px;
	height: 50px;
	border: none;
	cursor: pointer;
}

/* Nav */
nav {
	display: none;
	width: 100%;
	text-align: center;
	background: #fff url("../images/dropDownBG.png") repeat-x;
	border-bottom: 2px solid #5b5b5e;
}

nav a {
	display: block;
	background-color: #f5f5f5;
	padding: 15px;
	width: 250px;
	border: 1px solid #5b5b5e;
	text-align: left;
}

nav a:hover {
	background-color: #bfbfbf;
}

/* Product / Icon Layout */
.productIcon {
	display: flex;
	flex-direction: row;
	background-image: url("../images/iconBG.png");
	background-position: bottom;
	border: 2px solid #1567a6;
	border-top-left-radius: 65px;
	height: 250px;
	width: 300px;
	margin: 35px auto;
}

.productIconPicture {
	flex-shrink: 0;
	height: 195px;
}

.productIconText {
	color: white;
	font-size: 16px;
	font-weight: bold;
	margin-left: 10px;
	width: 260px;
}

/* Media Block */
.mediaFlex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

/* Icon Grid */
.iconContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.iconBox {
	width: 150px;
	text-align: center;
}

/* List Boxes */
.listBox, .listBoxBlue {
	margin: 0 auto 25px;
	border-radius: 10px;
	padding: 10px;
}

.listBox {
	width: 340px;
	background: #f5f5f5 url("../images/listBoxBG4.png") repeat-x 0 -8px;
	border: 1px solid #58595b;
	text-align: right;
}

.listBox h3 {
	color: #fff;
	text-align: center;
}

.listBoxBlue {
	width: 300px;
	color: #1F51AE;
	background-color: #e1e7f0;
	background-image: url("../images/listBoxServicesBGL.png"), url("../images/listBoxServicesBGR.png");
	background-repeat: no-repeat;
	background-position: top left, top right;
	text-align: left;
	padding: 5px 35px 10px 5px;
}

.listBox ul, .listBoxBlue ul {
	margin-left: 30px;
}

.listBox li, .listBoxBlue li {
	font-size: 16px;
	padding: 5px 0;
}

/* Service Table */
.serviceTable table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px auto;
}

.serviceTable td, .serviceTable th {
	border: 1px solid #687884;
	padding: 10px;
	width: 250px;
	text-align: left;
}

.serviceTable th {
	background-color: #d1d1d1;
	font-size: 15px;
}

/* Menu */
.menu {
	text-align: center;
	width: 340px;
	margin: 0 auto;
}

.menu a {
	display: block;
	margin: 10px 0;
	padding: 5px 20px;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	color: #428bca;
}



/* Footer */
footer {
	background-color: #1567A6;
	color: white;
	padding: 30px 0;
	font-size: 15px;
	letter-spacing: 1px;
	text-align: center;
}

footer a {
	color: white;
}

.socialIconWrap {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin: 20px auto;
}

.socialIcon img {
	width: 32px;
	height: 32px;
}

.copyright {
	font-size: 12px;
	margin-top: 15px;
}

/* ---------- CONSENT BOX ---------- */

#consentBox { 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
    width: 300px;
    height: 250px;
    margin: 0;
    padding: 10px; 
    background: #fff; 
    border: 2px solid #158BE5;
    border-radius: 5px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    text-align: center; 
}
  
#consentBox.hide { 
    opacity: 0; 
    pointer-events: none; 
    transform: scale(0.8); 
    transition: all 0.3s ease; 
} 
  
::selection { 
    color: #fff; 
    background: #158BE5; 
} 
  
#consentContent p { 
    color: #158BE5; 
    margin: 10px 0 20px 0; 
} 
  
#consentContent .buttons { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 10px; 
} 
  
.consentButton, 
.rejectButton { 
    padding: 12px 30px; 
    border: none; 
    outline: none; 
    color: #fff; 
    font-size: 16px; 
    font-weight: 500; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
} 
  
.consentButton { 
    background: #158BE5; 
    margin-right: 10px; 
} 
  
.rejectButton { 
    color: #158BE5; 
    background: transparent; 
    border: 2px solid #158BE5; 
    text-decoration: none; 
} 
  
#consentBox img { 
    max-width: 50px; 
} 
  
#consentHeader { 
    font-size: 25px; 
    font-weight: 600; 
    margin-top: 10px; 
}