* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

div.wrapper {
  background: white;
  box-shadow: 1px 1px 13px 0 rgba(0, 1, 1, 0.3);
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  padding: 32px 20px 50px;
  width: 100%;
  min-height: 100vh;
}

h1.static-line {
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #212020;
  margin: 0 0 20px 0;
  position: relative;
}

h1.static-line span {
  background: white;
  padding-right: 20px;
  position: relative;
}

div.content.full {
  width: 100%;
  max-width: 100%;
}

.intro-text {
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.form-layout {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.alert-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.form-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.input-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.label-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.label-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.text-input-style {
  font-weight: 400;
  width: 100%;
  color: #333;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.text-input-style:focus {
  outline: none;
  border-color: #307563;
}

.text-input-style::placeholder {
  color: #9ca3af;
}

.textarea-style {
  resize: vertical;
  min-height: 120px;
  font-family: Arial, sans-serif;
}

.submit-button {
  background-color: #307563;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 40px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-size: 16px;
  min-height: 50px;
}

.submit-button:hover {
  background-color: #225544;
}

.button-text {
  font-size: 16px;
  font-weight: 600;
}

.company-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  width: 100%;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-section h3 {
  font-size: 16px;
  font-weight: bold;
  color: #307563;
  margin: 0 0 8px 0;
}

.company-section p {
  font-size: 14px;
  color: #3d3d3d;
  line-height: 1.4;
  margin: 0;
}

.company-section a {
  color: #307563;
  text-decoration: none;
}

.company-section a:hover {
  text-decoration: underline;
}

/* Tablet styles */
@media (max-width: 1024px) {
  div.wrapper {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }

  .contact-container {
    gap: 30px;
  }

  .contact-form,
  .company-info {
    padding: 25px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  div.wrapper {
    margin: 0;
    max-width: 100%;
    box-shadow: none;
    padding: 20px 15px 30px;
  }

  h1.static-line {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
  }

  .intro-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form,
  .company-info {
    padding: 20px;
  }

  .form-input-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .company-details {
    gap: 20px;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  div.wrapper {
    padding: 15px 10px 20px;
  }

  h1.static-line {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .intro-text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .contact-form,
  .company-info {
    padding: 15px;
  }

  .company-section h3 {
    font-size: 14px;
  }

  .company-section p {
    font-size: 13px;
  }

  .submit-button {
    padding: 14px 30px;
    min-height: 45px;
    font-size: 15px;
  }

  .form-layout {
    gap: 20px;
  }

  .company-details {
    gap: 15px;
  }
}
