/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 10px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

body {
  min-height: 1370px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 94px;
}

.logo img {
  height: 29px;
}

.spacer {
  width: 1200px;
  height: 15px;
}

.contact-title-section {
  width: 1200px;
  height: 234px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-title-wrapper {
  width: 1200px;
  height: 1170px;
  padding: 20px 60px;
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.main-title {
  width: 934px;
  font-size: 64px;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin-top: 30px;
}

.subtitle {
  width: 720px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #6f6f6f;
}

.contact-form-wrapper {
  position: relative;
  width: 822px;
  height: 866px;
}

.form-background {
  position: absolute;
  top: -0.6px;
  left: -0.6px;
  width: 822px;
  height: 866px;
  background-color: #fff;
  border: 0.2px solid #000;
  border-radius: 10px;
}

.form-heading {
  position: absolute;
  top: 48px;
  left: 43px;
  font-size: 30px;
  font-weight: 500;
  color: #000;
}

.form-label {
  position: absolute;
  font-size: 20px;
  color: #000;
}

.name-label { top: 118px; left: 43px; }
.email-label { top: 118px; left: 428px; }
.phone-label { top: 235px; left: 43px; }
.type-label { top: 350px; left: 43px; }
.content-label { top: 469px; left: 43px; }

.form-input, .form-textarea {
  font-family: 'DM Sans', sans-serif;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px;
  font-size: 18px;
  color: #828282;
}

.name-input { top: 154px; left: 43px; width: 306px; height: 46px; }
.email-input { top: 154px; left: 428px; width: 335px; height: 46px; }
.phone-input { top: 271px; left: 43px; width: 720px; height: 46px; }
.type-input { top: 384px; left: 43px; width: 720px; height: 46px; }
.content-input { top: 502px; left: 43px; width: 720px; height: 244px; }

.submit-button {
  position: absolute;
  top: 785px;
  left: 43px;
  width: 720px;
  padding: 14px 0;
  background-color: #163877;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.submit-button:hover {
  transform: translateY(-2px) scale(1.01); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
  background-color: #1a3a8d; 
}

.submit-button p {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;            
  padding: 25px 40px;
  background: white;        
  backdrop-filter: none;         
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;              
  box-sizing: border-box;
}

.nav-logo {
  position: absolute; 
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 25px;
  object-fit: contain;
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.navigation-menu a {
  font-size: 14px;
  font-weight: bold;
  color: black;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navigation-menu {
    display: none;
  }
  .navigation {
    justify-content: flex-start;
    padding: 15px 20px;
  }
}