/* Reset and General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #FFD9B7;
  color: #000; /* Black text color */
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px;
}

/* Header Styles */
header {
  background-image: url('header-bg.jpg');
  background-size: cover;
  color: #fff;
  padding: 150px 0;
  text-align: center;
}

h1 {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #000000;
}

p {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
}
.white {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
}

/* Contact Info Styles */
.contact-info {
  background-color: #9ED2BE;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 15px;
}

.phone-number {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.phone-number svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  fill: #C8E4B2;
}

a {
  color: #00a6e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0081a9;
}

/* Footer Styles */
footer {
  background-color: #222;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* Responsive Layout */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
  
  p {
    font-size: 18px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .phone-number svg {
    width: 20px;
    height: 20px;
  }
}
