* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Layout */
body {
  background: #f5f5f5;
  color: #333;
}

.site-header {
  background: #3c79b2;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header h1 {
  font-size: 20px;
}

nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container h2 {
  margin-bottom: 10px;
}

.container p {
  margin-bottom: 20px;
}

/* Form */
.career-form .form-group {
  margin-bottom: 15px;
}

.career-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form input[type="number"],
.career-form input[type="file"],
.career-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.career-form textarea {
  resize: vertical;
}

.btn {
  background: #3c79b2;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.btn:hover {
  background: #1559b2;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 10px;
  color: #666;
  font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #333333;
}

/* Top blue block */
.hero {
  background: #3c79b2;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px 50px;
  position: relative;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero-text {
  font-size: 14px;
  line-height: 1.7;
}

/* Small diamond / point at bottom of blue block */
.hero-point {
  width: 40px;
  height: 40px;
  background: #3c79b2;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%) rotate(45deg);
}

/* Middle white block */
.main-section {
  text-align: center;
  padding: 90px 20px 100px;
}

.launch-text {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 22px;
  color: #2c65a5;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-info {
  font-size: 14px;
  color: #555555;
}

.contact-info a {
  color: #2c65a5;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Bottom light gray block */
.footer {
  background: #f3f3f3;
  position: relative;
  padding-top: 40px;
}

.footer-point {
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%) rotate(45deg);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 25px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1px;
  color: #999999;
  text-transform: uppercase;
}

.copy, .powered {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .launch-text {
    font-size: 32px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}
