body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #000000;
  background-color: #ffffff;
}

body.home {
  background: url('creek-view.jpg') no-repeat center top;
  background-size: cover;
  position: relative;
}
body.home::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(40, 90, 94, 0.65); 
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: transparent; 
  padding: 1rem 0;
  border-bottom: 1px solid rgba(181, 211, 211, 0.7);
  position: relative;
  z-index: 2;
}
.header-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
}
.nav > ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.nav li { position: relative; }
.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav a:hover {
  background-color: rgba(181, 211, 211, 0.4);
  color: #ffffff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background-color: rgba(255,255,255,0.95);
  border: 1px solid #b5d3d3;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 6000; 
  min-width: 220px;
}
.dropdown-menu li { display: block; margin: 0; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #285a5e;
  text-decoration: none;
}
.dropdown-menu a:hover { background-color: #285a5e; color: #000000; }
.dropdown:hover .dropdown-menu { display: block; }

.hero {
  background-color: #b5d3d3; 
  padding: 4rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h2 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: #285a5e; 
}
.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #3e7477;
}
.btn {
  background-color: #3e7477;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid #285a5e; 
}
.btn:hover {
  background-color: #285a5e;
  color: #ffffff;
  border-color: #3e7477; 
}

.intro-section {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}
.intro-section p {
  max-width: 800px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: white;
  
}
.intro-section strong,
.intro-section a { color: white; }

.services {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.services h3 {
  text-align: center;
  color: #285a5e;
  margin-bottom: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: #87b1b1;
  padding: 1.5rem;
  border-radius: 6px;
  color: #000000;
}
.service-card h4 { color: #285a5e; }

.about {
  background-color: #b5d3d3;
  padding: 3rem 0;
}
.about h3 {
  text-align: center;
  color: #285a5e;
  margin-bottom: 1rem;
}
.about p, .about ul {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}
.about ul { list-style: disc; padding-left: 1.25rem; }

.resources {
  padding: 2.5rem 0;
  text-align: center;
  background-color: #f1f1f1;
}
.resources h3 {
  text-align: left;
  margin-top: 2rem;
  color: #285a5e;
}
.resources ul { list-style: none; padding: 0; margin: 0; }
.resources li { margin: 0.5rem 0; }
.resources a { color: #3e7477; text-decoration: none; font-size: 1.1rem; }
.resources a:hover { text-decoration: underline; }

.site-footer {
  background-color: #285a5e;
  color: #ffffff;
}

.site-footer a { color: #ffffff; text-decoration: underline; }

.contact-page {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.contact-page h2 { text-align: left; color: #285a5e; margin-bottom: 1rem; }
.contact-page p { max-width: 800px; margin-bottom: 1.5rem; line-height: 1.6; }
.contact-info h3 { margin-top: 2rem; color: #3e7477; }
.contact-info a { color: #3e7477; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }


.firm-profile {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.firm-profile h2 { color: #285a5e; text-align: left; margin-bottom: 1rem; }
.firm-profile p { max-width: 800px; margin-bottom: 2rem; line-height: 1.6; }
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member img {
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #b5d3d3;
}

.team-member h3 { margin-top: 0; color: #3e7477; }

.service-detail {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.service-detail h2 { color: #285a5e; text-align: left; margin-bottom: 1rem; }
.service-detail h3 { color: #3e7477; margin-top: 2rem; }
.service-detail p { line-height: 1.6; max-width: 800px; margin-bottom: 1rem; }
.service-detail ul { padding-left: 1.5rem; margin-bottom: 2rem; }
.service-detail ul li { margin-bottom: 0.5rem; }
.service-detail a { color: #3e7477; text-decoration: none; font-weight: 500; }
.service-detail a:hover { text-decoration: underline; }

.has-photo-header .site-header {
  background-color: transparent;              
  border-bottom: none;
  position: absolute;                         
  top: 0; left: 0; width: 100%;
  z-index: 300; 
}

.has-photo-header .nav a { color: #ffffff; }
.has-photo-header .nav a:hover {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  display: flex
}

.header-bg {
  position: relative;
  height: 280px;                              
  background: url('creek-view.jpg') center/cover no-repeat;
  z-index: 1; 
}

.header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.30) 25%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

.site-header { position: relative; z-index: 5000; }
.dropdown-menu { z-index: 6000; }
.hero { position: relative; z-index: 1; }
body.home::before { z-index: 0; }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px; 
  align-items: start;
  gap: 2rem;
}

.sidebar {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.social-link img {
  width: 56px; height: 56px;
  display: block;
  transition: transform 0.2s ease;
}

.social-link img:hover { transform: scale(1.08); }

.refund-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid #b5d3d3;
  border-radius: 6px;
  padding: 1rem;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.refund-card h4 {
  margin: 0 0 0.5rem 0;
  color: #285a5e;
}

.refund-card select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #b5d3d3;
  border-radius: 4px;
  margin: 0.25rem 0 0.75rem 0;
}

.refund-card small {
  display: block;
  margin-top: 0.5rem;
  color: #285a5e;
  opacity: 0.8;
}

.btn.btn-outline {
  background: transparent;
  color: #285a5e;
  border: 2px solid #285a5e;
}

.btn.btn-outline:hover { background: #285a5e; color: #ffffff; }

@media (max-width: 800px) {
  .intro-grid { grid-template-columns: 1fr; }
  .sidebar { justify-items: start; }
}

.has-photo-header .dropdown-menu {
  background-color: #285a5e; 
  border-color: #b5d3d3;  
}  

.has-photo-header .dropdown-menu a {
  color: #ffffff; 
}

.has-photo-header .dropdown-menu a:hover {
  background-color: rgba(255,255,255,0.15); 
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;    
  justify-content: space-between;
}


.client-login-btn {
  margin-left: auto;  
  background-color: #b5d3d3;
  color: #285a5e;
  width: 200px;       
  height: 80px;       
  display: flex;      
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #285a5e;
  font-size: 1.5rem;
}

.client-login-btn:hover {
  background-color: #d1e5e5; 
  border-color: #3e7477;
  color: #285a5e;
}

.ship-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 1.5rem;
}

.ship-bullets li {
  position: relative;
  padding-left: 3.2rem; 
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #000;
}

.ship-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem; 
  width: 40px;
  height: 40px;
  background-image: url("shipwheel.png");
  background-size: contain;
  background-repeat: no-repeat;
}


body.home .ship-bullets li {
  color: #fff;
}

body.home .ship-bullets li::before {
  filter: brightness(10);
}

.firm-profile {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e6f0f0, #ffffff);
}

.firm-profile h2 {
  color: #285a5e;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.firm-profile p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #3e7477;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  background: #f1f7f7;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.team-member img {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #285a5e;
  background-color: #b5d3d3;
}

.team-member div {
  flex: 1;
}

.team-member h3 {
  margin-top: 0;
  color: #285a5e;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.team-member p {
  color: #3e7477;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  .team-member img {
    margin: 0 auto 1rem auto;
  }
}

.firm-profile .team-member + .team-member {
  border-top: 1px solid #d0e2e2;
  padding-top: 2rem;
}
.header-style {
  color: #285a5e;
  font-size: 2.5rem; 
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.resources h2 {
  color: #285a5e;         
  font-size: 1.75rem;      
  font-weight: 600;         
  margin-bottom: 1rem;     
  line-height: 1.3;         
  text-align: left;         
}
h4 {
  text-align: center;
}

h2.page-title {
  color: #285a5e;
  font-size: 1.5rem;
  text-align: left;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  line-height: 1.2; 
}










