* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.2px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1, h2, h3, 
h4, h5, h6 {
  letter-spacing: 1px;
  font-weight: 700;
}

p {
  letter-spacing: 0.3px;
}

a {
  color: #fff;
}

#hamburger-menu {
  display: none;
}

header {
  display: flex;
  font-weight: 700;
  justify-content: flex-start;
  font-family: 'Montserrat', sans-serif;
  align-items: center;
  flex-wrap: wrap;                
  padding: 0.5rem 1rem;
  background-color: #8b0000;
  z-index: 100;
  width: 100%;
  min-height: 6vh;
  max-height: 8vh;
}

#header-logo a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: transform ease 0.3s;
  flex: 0 0 auto;
}

#header-logo a:hover {
  transform: translateY(-3px);
}

#header-nav {
  flex: 1;    
  display: flex;
  justify-content: flex-end;
}

#header-nav-ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#header-nav-ul a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  position: relative;
  min-height: 5vh;
  transition: 
    color ease 0.3s,
    transform ease 0.3s;
}

#header-nav-ul a:hover {
  transform: translateY(-3px);
  background-color: #ffd700;
  color: #8b0000;
  border-radius: 3px;
}

#page-footer {
  z-index: 100;
  background-color: #444;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: auto;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
  padding: 1.2rem 1.5rem; 
  width: 100%;
  box-sizing: border-box;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#footer-right {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}

#footer-right h3 {
  display: block;
  padding: 0;
  line-height: normal;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

#important-para {         
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem; 
  margin-top: 1rem;
}

#flex-section {
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-radius: 0.8rem;
  justify-content: center;
  align-items: stretch;
  align-self: center;
  gap: 2rem;
  padding: 0.8rem 1rem;
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

#footer-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
  transition:
    text-decoration-line .3s ease,
    transform .3s ease;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#footer-nav li:hover {
  transform: translateY(-3px);
  text-decoration-line: underline;
}

.e-mail {
  text-decoration: none;
}

#company-address p, 
#company-address a {
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 0;
}

#company-address p:nth-child(1), 
#company-address p:nth-child(2) {
  display: block;
  width: 100%;
}

#company-address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: normal;
  word-spacing: normal;
  max-width: 360px;
  min-width: 260px;
  text-align: center; 
  padding: 0.8rem 0;
  flex: 1;
}

#footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 0;
  gap: 0.2rem;
  padding-top: 1.4rem;
  min-width: 160px;
  max-width: 180px; 
}

#footer-nav li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

#form-social-media {
  flex: 1;
  padding: 0 0.6rem;
  margin: 0;
}

.form-header {
  display: block;
  font-size: 1.75rem;
  line-height: normal;
  padding: 0;
  margin-bottom: 0.5rem;
}

.form-para {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}

#form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  max-width: 500px;
  margin: 1.2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#form input, #form textarea {
  width: 100%;
  margin: 0.8rem 0;
  padding: 0.8rem;
  border-radius: 0.5rem;
  resize: none;
  border: none;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  transition: 
    background-color 0.3s linear, 
    outline 0.3s linear;
  line-height: 1.5;
}

#form input:focus, #form textarea:focus {
  background-color: #fff;
  outline: 3px solid #ffd700;
}

#form input[type='submit'] {
  background-color: #fff;
  font-weight: 700;
  border: #ffd700 solid 3px;
  border-radius: 0.5rem;
  color: #444;
  cursor: pointer;
  width: 75%;
  margin-top: 1rem;
}

.footer-social-media {
  position: relative;  
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;        
}

.footer-social-media a i {
  font-size: 2rem;
}

#copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #8b0000;
  width: 100%;
  z-index: 100;
}

#copyright p {
  font-weight: 900;
  font-size: 1rem;
  padding: 50px;
}

main {
  z-index: 50;
}

body::after {
  content: '';
  position: fixed;
  z-index: 1;
  inset: 0;
  background-position: top center;            
}

main, 
footer, 
#copyright {
  position: relative;
}

#form-social-media, #footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

#form-social-media .form-header, 
#footer-right h3 {
  margin-top: 0;
  line-height: 1.2;
  font-size: 1.75rem;
}

.fa-facebook-square {
  color: #3b5998;
}

.fa-instagram {
  color: #833ab4;
}

.fa-whatsapp {
  color: #25d366;
}

.fa-x-twitter {
  color: #000000;
}