body {
  font-family: Arial, sans-serif;
  margin: 20px;
}


/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002060;
  padding: 10px 20px;
  color: white;
  position: sticky;  /* stays on top */
  top: 0;
  z-index: 1000;
}

/* Logo Section */
.navbar .logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}

.navbar .logo img {
  height: 30px;
  margin-right: 10px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00; /* hover effect */
}







/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
}

/* Hide slides by default */
.slide {
  display: none;
}

/* Slideshow Images */
.slide img {
  width: 100%;
  height: auto;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


/* Intro */
.intro {
  text-align: center;
  padding: 20px;
}

.intro h1 {
  color: #002060;
  margin-bottom: 10px;
}

.intro p {
  font-size: 16px;
  color: #333;
}

/* Buttons */
.actions {
  text-align: center;
  margin: 20px;
}

.actions button {
  background-color: #002060;
  color: white;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.actions button:hover {
  background-color: #004080;
}






.company-header {
  text-align: center;
  margin-bottom: 10px;
}

.company-header .logo {
  height: 80px;
}

.company-header h2 {
  margin: 5px 0;
  color: #002060;
}

.company-header h3 {
  margin: 0;
  font-weight: normal;
}

.addresses {
  display: flex;
  justify-content: center;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

.address {
  flex: 1;
  padding: 10px;
  font-size: 14px;
}

.address.left {
  border-right: 1px solid #ccc;
  color: #b22222;
  text-align: left;
}

.address.center {
  text-align: center;
}

.address.right {
  border-left: 1px solid #ccc;
  color: #b22222;
  text-align: right;
}

.form-title {
  text-align: center;
  margin: 20px 0;
}

.form-title h2 {
  color: #ffffff;
 
  background: #002060;
}

.section-divider{
	border: none;
	height 3px;
	background-color:#002060; /* deep blue */
	margin: 20px 0;
}

.address-box {
  border-left: 6px solid #002060;
  padding: 10px 15px;
  margin: 12px 0;
  background-color: #fafafa;
  font-style: italic;
}



/* Form styles */
form {
  max-width: 600px;
  margin: auto;
}

label {
  display: block;
  margin-bottom: 15px;
}

input, select, button {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

button {
  background-color: #002060;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #001040;
}

/* 📱 Responsive (mobile-friendly) */
@media (max-width: 768px) {
	
  .addresses {
    flex-direction: column;
	 border: none;

  }
  .address {
    border: none;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  .address:last-child {
    border-bottom: none;
  }
  .confirmation-text {
  border: 1px solid #002060;
  padding: 10px;
  margin: 20px 0;
  font-size: 14px;
  background: #f9f9f9;
}
.confirmation-text input[type="checkbox"] {
  margin-right: 8px;
}

.form-section {
  background-color: #002060;   /* deep blue */
  color: white;               /* white text */
  padding: 8px;
  margin: 20px 0 10px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
}



}