
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

#contact h2 {
    font-family: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merriweather", serif;
    letter-spacing: .01em;
    line-height: 1.6;
    font-size: 1.1em;
    color: #333;
    background-color: #F8F7F3;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left; =
}

header, section {
}

header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    max-width: 700px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 700px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#people .person {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

#people img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-right: 20px;
}

.person-info {
    max-width: 500px;
}

#services ul, #people .person-info, #mission p, #values p {
    max-width: 700px;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

footer p {
    margin: 10px 0;
}

#contact {
    max-width: 700px;
    margin: 0 auto 60px;
}

#contact h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 20px;
    text-align: left;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 70%;
    max-width: 640px;
    margin: 0 auto;
}

#contact label {
    color: #333;
    font-weight: 600;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    background-color: #fff;
}

#contact textarea {
    resize: vertical;
}

#contact .form-error {
    color: #9b1c1c;
    margin: -6px 0 0;
    font-size: 0.95em;
}

#contact button[type="submit"] {
    padding: 12px 18px;
    width: 160px;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#contact button[type="submit"]:hover {
    background-color: #004494;
}

#contact button[type="submit"]:disabled {
    background-color: #9aa3af;
    cursor: not-allowed;
    opacity: 0.7;
}

.dictionary-entry {
    max-width: 600px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Georgia", serif;
    line-height: 1.6;
    color: #333;
}

.dictionary-entry p {
    margin-bottom: 15px;
}

.dictionary-entry ol {
    margin-left: 20px;
    padding-left: 20px;
}

.dictionary-entry li {
    margin-bottom: 10px;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 1em;
}

.screenshots img {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px;
  background-color: #f9f9f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshots img:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.inline-logo {
  vertical-align: middle;
  margin-left: 8px;
}

