.section-static {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-background);
}

.static-header {
  text-align: center;
  margin-bottom: 4rem;
}

.static-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.static-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.static-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.static-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-heading);
}

.static-content h2:first-child {
  margin-top: 0;
}

.static-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.static-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

.static-content ul, 
.static-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

.static-content li {
  margin-bottom: 0.5rem;
}

.static-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.static-content a:hover {
  color: var(--color-primary-dark);
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info {
  background-color: var(--color-primary);
  color: white;
  padding: 3rem;
  border-radius: 24px;
}

.contact-info h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-method svg {
  color: white;
}

.contact-method a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-form-wrapper {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-heading);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text-body);
  background-color: var(--color-background);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
