/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f6f3f0;
  color: #2e484b;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: white;
  border-bottom: 1px solid #e4ddd8;
}

header .logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2d4f50;
}

nav a {
  margin: 0 18px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #2e484b;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  border-bottom: 3px solid #2e6666;
  padding-bottom: 4px;
}

.cta {
  padding: 10px 24px;
  background: #4f7c79;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.cta:hover {
  background: #3f6764;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(to bottom, #f4efeb, #f6f3f0);
}

.hero h1 {
  font-size: 2.8rem;
  color: #2e484b;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto;
  color: #5b6768;
}

/* HEADER CARD (LOGO + TITLE AREA) */
.header-card {
  background: white;
  width: 96%;
  margin: 40px auto;
  padding: 40px;
  border-radius: 22px;
  display: flex;
  gap: 40px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.header-card img {
  width: 340px;
  border-radius: 20px;
}

.header-card h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #2e484b;
}

.header-card .subtitle {
  font-size: 1.2rem;
  color: #8d8077;
  margin-top: 6px;
}

.header-card .name-line {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #1f3f43;
  font-weight: 700;
}

/* GRID SECTION */
.info-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

/* CARDS */
.info-card {
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

.info-card h2 {
  font-size: 1.6rem;
  color: #2e484b;
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}

/* CONTACT FORM */
input, textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #c8c1bc;
  font-size: 1rem;
}

button, .submit-btn {
  width: 100%;
  padding: 12px;
  background: #4f7c79;
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #3e6764;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  color: #6e7879;
  font-size: 0.95rem;
}

footer a {
  color: #4f7c79;
  text-decoration: none;
  font-weight: 600;
}
