/* Access Section */
.access-section {
  background: #fff;
}

/* MAIN FLEX */
.access-inner {
  margin: 100px auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: flex-start;
}

/* LEFT SIDE */
.access-left {
  flex: 1;
}

/* TITLE */
.access-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
}

.title-content {
  color: #333;
  position: relative;
}

/* OFFICE IMAGE */
.access-office img {
  height: 100%;
  margin-top: 50px;
  object-fit: cover;
}

.office-caption {
  margin-top: 35px;
  font-size: 14px;
  text-align: center;
  color: #666;
  font-weight: 600;
}

/* BUTTONS */
.access-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.access-btn {
  min-width: 280px;
  padding: 14px 0;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

/* FILLED */
.access-btn.filled {
  background: #f6c800;
  color: #fff;
  box-shadow: 0 6px 18px rgba(246,200,0,0.35);
}

.access-btn.filled:hover {
  transform: translateY(-3px);
}

/* RIGHT MAP */
.access-right {
  flex: 0.9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.access-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive styles for Access Section */
@media screen and (max-width: 1080px) {
  .access-inner {
    flex-direction: column;
    align-items: center;
  }

  .access-right {
    height: 360px;
    width: 75%;
  }
}

@media screen and (max-width: 720px) {
  .access-btn {
    min-width: 180px;
  }
}

@media screen and (max-width: 475px) {

  .title-content {
    font-size: 14px;
  }
}

/* Container base style */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 475px) {
  .container {
    padding: 0 16px;
  }
}
/* ================= FOOTER ================= */
.footer {
  position: relative;
  height: 420px;
  background-color: #FFD700; /* YELLOW BASE */
  overflow: hidden;
}

/* Sunflower strip on top */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/sunflowers-footer.png") center top / cover no-repeat;
  z-index: 1;
}

/* Center logo */
.footer-logo-wrap {
  position: relative;
  z-index: 2; /* ABOVE sunflower */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-wrap img {
  margin-top: 90px;
  height: 46px;
}

/* Responsive styles for the footer */
@media screen and (max-width: 1080px) {
  /* This media query doesn't contain footer-specific styles in the provided code */
}

@media screen and (max-width: 720px) {
  /* FOOTER */
  .footer {
    height: 210px;
  }
}

@media screen and (max-width: 475px) {
  /* FOOTER */
  .footer-logo-wrap img {
    height: 36px;
  }
}
/* =======================
   Access & Footer - 375px 이하
======================= */
@media screen and (max-width: 420px) {

  /* ---------- ACCESS SECTION ---------- */
  .access-inner {
    margin: 60px auto;
    gap: 20px;
  }

  .access-title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 16px;
    text-align: center;
  }

  .title-content {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .access-office img {
    margin-top: 30px;
  }

  .office-caption {
    font-size: 12px;
    margin-top: 20px;
  }

  /* BUTTONS */
  .access-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .access-btn {
    min-width: 100%;
    font-size: 13px;
    padding: 12px 0;
  }

  /* MAP */
  .access-right {
    width: 100%;
    height: 260px;
  }

  /* ---------- CONTAINER ---------- */
  .container {
    padding: 0 14px;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    height: 180px;
  }

  .footer-logo-wrap img {
    margin-top: 50px;
    height: 32px;
  }
}
