body{
    padding: 0%;
    margin: 0%;
}
#header{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  background:#000;
  padding:10px 20px;
}

#header span{
  color:#fff;
  font-size:14px;
  margin-right:15px;
}

#header i{
  width:18px;
  height:18px;
  margin-right:4px;
  color: white;
}

.headerimage{
  display:flex;
  gap:10px;
  margin-left:auto;
}

/* ===== MAIN HEADER ===== */
.headerwrap{
  display:flex;
  align-items:center;
  padding:10px 20px;
  background:white;
}

.headerwrap img{
  height:60px;
}

/* ===== NAV ===== */
nav{
  flex:1;
  display:flex;
  justify-content:center;
}

#navlist{
  display:flex;
  list-style:none;
  gap:20px;
  margin:0;
  padding:0;
}

#navlist a{
  text-decoration:none;
  color:#000;
  font-weight:500;
}

/* ===== BUTTON ===== */
#PROPOSAL-btn{
  background:#2078fc;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:4px;
}

/* ===== SECOND NAVBAR ===== */
.my-navbar{
  background:#1D90CF;
}

.navbarlist{
  display:flex;
  justify-content:center;
  list-style:none;
  margin:0;
  padding:0;
}

.navbarlist a{
  padding:8px 20px;
  color:#f7f8fa;
  text-decoration:none;
  display:flex;
  align-items:center;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .headerimage{
    width:100%;
    justify-content:center;
    margin-top:8px;
  }

  #navlist{
    flex-wrap:wrap;
    justify-content:center;
  }
}
.content{
    justify-content: center;
    align-items: center;
    text-align: center;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}

/* Left Content */
.content {
    flex: 3;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}

.breadcrumb {
    font-size: 13px;
    color: #0073e6;
    margin-bottom: 15px;
}

h1 {
    font-size: 26px;
    color: #0073e6;
    margin-bottom: 20px;
}

h2 {
    margin: 20px 0 10px;
    font-size: 22px;
}

h3 {
    margin-top: 20px;
    font-size: 18px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight {
    margin-top: 30px;
    color: #0073e6;
}

/* CTA Section */
.cta {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    margin: 5px;
}

.primary {
    background: #0056b3;
}

.secondary {
    background: #000;
}

/* Sidebar */
.sidebar {
    flex: 1.2;
}

/* Form */
.form-box {
    background: #1e90c9;
    padding: 20px;
    border-radius: 5px;
    color: #fff;
}

.form-box h3 {
    margin-bottom: 15px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 3px;
}

.form-box button {
    width: 100%;
    padding: 10px;
    background: #004d80;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

/* Locations */
.locations {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.locations h3 {
    margin-bottom: 10px;
}

.locations ul {
    list-style: none;
}

.locations li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: #0073e6;
    font-size: 14px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #0d4f63;
    color: #ffffff;
    padding: 40px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
    padding-bottom: 5px;
}
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: #1fa3c6;
}

.footer-col p {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 14px;
    background-color: #000;
    text-align: center;
    padding: 14px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}




