body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #0d1b2a;
color: #e0e1dd;
position: relative;
}

body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('background.png') repeat;
background-size: cover;
opacity: 0.2;
z-index: -1;
}

.container {
max-width: 900px;
margin: 0 auto;
padding: 0 5px;
}

/* Banner matching content width */
.banner-container {
width: 100%;
margin: 5px 0;
}

h1 {
    font-size: 4rem; /* Adjust as needed: 2.5rem, 3rem, etc. */
    font-weight: 700; /* Bold for emphasis */
    color: #e0e1dd;   /* Or your brand color */
    margin: 20px 0;   /* Add spacing */
}


.banner-container img {
width: 100%;
height: auto;
display: block;
border-radius: 2px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.phone-header {
    text-align: right;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
}

.phone-header a {
    color: #00b4d8; /* Bright blue to match theme */
    text-decoration: none;
}

.phone-header a:hover {
    text-decoration: underline;
}


.box-section {
    background-color: #1b263b;
    padding: 20px; /* This controls inside spacing — keep it same for all boxes */
    border-radius: 8px;
    margin: 10px 0; /* Outside spacing between boxes */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.box-section h2 {
    color: #00b4d8;
    border-bottom: 2px solid #415a77;
    display: inline-block;
    margin: 0 0 15px 0;  /* Top spacing = 0, Bottom spacing = 15px */
}

.box-section p, .box-section ul {
color: #e0e1dd;
line-height: 1.6;
}

/* Shared grid layout for lists */
.list-grid {
list-style: none;
padding: 0;
margin: 20px 0 0 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px 20px;
}

.list-grid li {
background: #1b263b;
padding: 10px 15px;
border-radius: 6px;
color: #e0e1dd;
font-weight: 500;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

header {
text-align: center;
padding: 2px 0;
border-bottom: 5px solid #1b263b;
}

header img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}

nav {
text-align: center;
margin: 20px 0;
}

nav a {
color: #e0e1dd;
margin: 0 15px;
text-decoration: none;
font-weight: 600;
}

contact a {
   color: #e0e1dd;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600; 
}

section {
padding: 0px 0;
}

form {
background: #1b263b;
padding: 20px;
border-radius: 8px;
}

input, textarea {
width: 100%;
padding: 10px;
margin-top: 8px;
border-radius: 5px;
border: none;
}

button {
background-color: #00b4d8;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

footer {
text-align: center;
padding: 15px;
background: #1b263b;
font-size: 14px;
}