
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
  padding-bottom: 70px; 
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #ccc;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  width: 50px;
  height: 50px;
}

.header h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: #333;
  flex-grow: 1;
  text-align: left;
  padding-left: 10px;
}

.menu {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding: 5px 10px;
  margin-left: auto;
  width: auto;
  flex-shrink: 0;
}

.menu:hover,
.menu:focus {
  background: none; 
  outline: none;
  color: #0077cc; 
}



.services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 50px 20px;
  background: #f9f9f9;
}

.services-text {
  flex: 1;
}

.services-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.services-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

.services-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.services-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
}


.info-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 40px 20px;
  background: #fff;
  flex-wrap: nowrap;
}

.box {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-height: 200px;
  flex-shrink: 0;
}


.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 40px 20px;
  border-top: 1px solid #ccc;
}

.contact-container {
  width: 100%;
  max-width: 800px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.8rem;
  color: #333;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

button {
  width: 100%;
  padding: 12px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #005fa3;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.footer {
  background: #ffffff;
  padding: 40px 20px;
  padding-bottom: 80px; 
  text-align: center;
  color: #333;
  border-top: 1px solid #ccc;
  position: relative; 
  z-index: 1; 
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.footer-links a i {
  font-size: 1.4rem;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.footer-links a:hover i {
  color: #0077cc;
}

.footer-socials {
  margin-bottom: 20px;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 1.3rem;
  color: #333;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #0077cc;
}

.footer-info p {
  margin: 3px 0;
  font-size: 0.9rem;
}

/* Bottom fixed nav */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  border-top: 1px solid #ccc;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 20;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.9rem;
}

.bottom-nav a i {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.bottom-nav a:hover i {
  color: #0077cc;
}

.required {
  color: red;
  margin-left: 2px;
}
