body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fbff;
  color: #0f172a;
}
.site-title h1{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.site-title p{
    font-size: 18px;
    color: #d9e3f0;
    margin-top: 8px;
}
.contact-header {
  background: #07182d;
  color: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.contact-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-logo {
  font-size: 24px;
  font-weight: 700;
}

.contact-nav-links {
  display: flex;
  gap: 28px;
}

.contact-nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-nav-links a:hover,
.contact-nav-links .active {
  color: #60a5fa;
}

.contact-page {
  max-width: 1200px;
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
  padding: 58px 28px;
}

.contact-left {
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  border-right: 1px solid #dbe7f5;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-left h1 {
  font-size: 32px;
  margin: 0 0 10px;
}

.blue-line {
  width: 55px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 26px;
}

.intro-text {
  line-height: 1.65;
  color: #334155;
  margin-bottom: 34px;
}

.contact-left h3 {
  text-transform: uppercase;
  color: #1d4ed8;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 18px 0;
  color: #0f172a;
}

.contact-item a {
  color: #0f172a;
  text-decoration: none;
}

.contact-item a:hover {
  color: #2563eb;
}

.icon {
  width: 24px;
  min-width: 24px;
  color: #1d4ed8;
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1px solid #dbe7f5;
  margin: 28px 0 18px;
}

.available-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.available-list li {
  margin: 12px 0;
  padding-left: 24px;
  position: relative;
}

.available-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.cv-button {
  display: inline-block;
  border: 1px solid #2563eb;
  color: #1d4ed8;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.cv-button:hover {
  background: #eff6ff;
}

.contact-right {
  background: white;
  padding: 38px 44px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-right h2 {
  font-size: 34px;
  margin: 0 0 12px;
}

.contact-right > p {
  color: #475569;
  margin-bottom: 28px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

.submit-btn {
  width: 100%;
  border: none;
  background: #2563eb;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.small-note {
  font-size: 14px;
  color: #64748b;
}

@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-nav {
    flex-direction: column;
    gap: 15px;
  }

  .contact-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
