﻿body {
    padding-top: 0;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #111;
    background: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  background: #fff;
  z-index: 1000;

  display: flex;
  align-items: center;
  padding: 0 40px;

  border-bottom: 1px solid #eee;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #FF6A00;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

nav a.recruit {
  background: #FF6A00;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #666;
}

.section {
    padding: 40px 40px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    border-color: #FF6A00;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: #FF6A00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    align-self: flex-start;
    border-color: orange;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-group label {
  display: block;
  font-size: 14px;
}

.required {
  color: red;
  font-size: 12px;
}

.input-name {
  width: 100%;
  max-width: 200px;
}
.input-email {
  width: 100%;
  max-width: 350px;
}
.input-tel {
  width: 100%;
  max-width: 200px;
}
.input-company {
  width: 100%;
  max-width: 200px;
}
.input-url {
  width: 100%;
  max-width: 350px;
}
.input-message {
  width: 100%;
  max-width: 500px;
}

.hero {
  height: 100vh;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}


.overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 60px;
  border-radius: 10px;
}

.hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  color: #ddd;
  font-size: 18px;
}


.overlay {
  background: rgba(0, 0, 0, 0.5);
}
.hero {
  justify-content: flex-start;
  padding-left: 80px;
  text-align: left;
}
.hero {
  background-attachment: fixed;
}


.table {
  width:100%;
  border-collapse:collapse;
}

.table th, .table td {
  padding:15px;
  border-bottom:1px solid #ddd;
  text-align:left;
}
