* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
}

header {
  background-color: #dcdde1;
  border-bottom: 1px solid #ccc;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-weight: bold;
  margin-right: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.map-wrapper {
  background-color: #f3f4f6;
  padding: 60px 0;
}

.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 220px;
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c0e6ff, #ffe0e6);
  position: relative;
  overflow: hidden;
  opacity: 0.8;
}

.map-placeholder::before {
  content: "G";
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.map-pin {
  width: 60px;
  height: 60px;
  border-radius: 60px 60px 60px 0;
  background-color: #ff7f9e;
  position: absolute;
  right: 40px;
  top: 28px;
  transform: rotate(-45deg);
}

.map-pin-inner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ffe7ef;
  position: absolute;
  top: 16px;
  left: 16px;
}

.contact-wrapper {
  flex: 1;
  background-color: #ffffff;
  padding: 30px 0 40px;
}

.contact-inner {
  margin: 0 auto;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  column-gap: 20px;
  padding: 20px;
}

.contact-left {
  padding-right: 20px;
}

.contact-heading {
  font-size: 28px;
  font-weight: bold;
  padding: 10px 12px 10px 0;
  margin-bottom: 10px;
  color: #11457e;
}

.contact-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.contact-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #11457e;
}

.contact-subtext {
  font-size: 14px;
  color: #555;
}

.contact-right {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-form-group {
  margin-bottom: 10px;
  font-size: 13px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 4px;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ccc;
  font-size: 13px;
  outline: none;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #3b7dff;
}

.contact-button {
  margin-top: 6px;
  padding: 8px 10px;
  width: 100%;
  border: none;
  background-color: #1769ff;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.contact-button:hover {
  background-color: #1256d0;
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 12px 0;
  height: 100px;
}

.vcard {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .contact-left {
    border-right: none;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
