body {
  font-family: "serif", Times, serif, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: #f6f5f4;
  color: rgb(20, 18, 82);
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 56px;
  color: rgb(20, 18, 82);
}

.header-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}
header .container {
  width: 95%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: rgb(20, 18, 82);
  padding: 16px;
  font-size: 24px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: rgb(20, 18, 82);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #f6f5f4;
}

/* Hero Section */
.hero {
  text-align: center;
  height: 100%;
}

.hero h1 {
  font-size: 56px;
  margin: 0 0 10px;
  padding: 30px;
}

.hero h2 {
  font-size: 32px;
  margin: 0 0 10px;
  margin-bottom: 10px;
  padding: 30px;
}

.hero p {
  font-size: 21px;
  margin-bottom: 60px;
}

.hero .btn {
  background: #0f146b;
  color: white;
  padding: 20px 25px;

  text-decoration: none;
  border-radius: 5px;
}

.hero .btn:hover {
  background: #0056b3;
}

/* Feature Category Section */
.feature-category {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid #d8d8d8;
}

.feature-category h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-category p {
  max-width: 720px;
  margin: 0 auto 25px;
  font-size: 20px;
  line-height: 1.6;
}

.feature-category .btn {
  padding: 16px 26px;
}

/* Photo Section */
.photo-section {
  text-align: center;
  height: 100%;
  margin-top: 60px;
}

.photo-section h1 {
  font-size: 56px;
  margin: 0 0 10px;
  padding: 30px;
}

.photo-section h2 {
  font-size: 32px;
  margin: 0 0 10px;
  margin-bottom: 10px;
  padding: 30px;
}

.photo-section p {
  font-size: 21px;
  margin-bottom: 60px;
}
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/** Variables **/

:root {
  --color-background: #cbd5e1;
  --color-background-alt: #64748b;
  --color-border-active: #64748b;
  --color-border-default: #94a3b8;
  --color-highlight: #cbd5e1;
  --color-primary: #1e293b;
  --color-primary-active: #090f1d;
  --color-text-default: #0f172a;
  --color-text-muted: #475569;

  --font-family-body: "Work Sans", system-ui, sans-serif;
  --font-family-display: "IBM Plex Serif", system-ui, sans-serif;
}

/** Base **/

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.form-label {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 1.5rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}
