body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #d9d9d9;
}

/* HEADER */
.header {
  background: linear-gradient(#0d2a4d, #061a33);
  color: white;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.logo {
  height: 140px;
  margin-top: 10px;
}

.header h1 {
  margin: 0;
  font-size: 62px;
}

.header h1 span {
  color: orange;
}

.phone {
  text-align: right;
  font-size: 22px;
  font-weight: bold;
}

/* NAV */
.nav {
  display: flex;
  justify-content: center;
  background: #123d6b;
}

.nav a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 500px;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
  display: flex;
  align-items: center;
  padding-left: 60px;
  color: white;
}

.hero h2 {
  font-size: 52px;
  margin: 0;
}

.hero p {
  color: orange;
  font-size: 22px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #ff6600;
  padding: 14px 30px;
  margin-top: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* FEATURES */
.features {
  display: flex;
}

.feature {
  flex: 1;
  background: #0d2a4d;
  color: white;
  padding: 30px;
  text-align: center;
  border-bottom: 5px solid orange;
}

/* CTA */
.cta {
  background: #0d2a4d;
  color: white;
  text-align: center;
  padding: 50px;
}

.cta p {
  font-size: 32px;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}

.email {
  font-size: 22px;
  font-weight: normal;
  margin-top: -10px;
}


.cta-phone {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.recommendation-box {
  max-width: 850px;
  margin: 30px auto 0;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 25px 30px;
  border-radius: 8px;
}

.recommendation-box h3 {
  margin-top: 0;
  font-size: 26px;
}

.recommendation-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}
.content-box {
  max-width: 900px;
  margin: 50px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.content-box h2 {
  text-align: center;
  color: #0d2a4d;
  font-size: 42px;
  margin-top: 0;
  border-bottom: 4px solid #ff6600;
  padding-bottom: 15px;
}

.content-box p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}

.content-box h3 {
  color: #ff6600;
  text-align: center;
  margin-top: 40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

.placeholder{
  background:#e9e9e9;
  border:3px dashed #999;
  border-radius:8px;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#666;
  font-weight:bold;
  padding:20px;
/* Background for inside pages */

body {
  background: #f4f4f4;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:30px;
}

.service-card{
    background:#f7f7f7;
    border-left:6px solid #ff6600;
    border-radius:8px;
    padding:25px;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
}

.service-card h3{
    color:#0d2a4d;
    margin-top:0;
}

.service-card p{
    margin-bottom:0;
}