body {
  background-color: #fffffb;
}

h2 {
    text-align: left;
    font-family: 'Noto Sans KR Black', sans-serif;
    font-weight: bold;
    word-break: keep-all;
}
h3 {
    text-align: left;
    font-family: 'Noto Sans KR Black', sans-serif;
    font-weight: bold;
    line-height: 1.7;
    word-break: keep-all;
}
p {
    text-align: left;
    font-family: 'Noto Sans KR Black', sans-serif;
    font-weight: normal;
    line-height: 1.7;
    word-break: keep-all;
}
div {
    font-family: 'Noto Sans KR Black', sans-serif;
    font-weight: bold;
}
.container {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
#text-block {
    margin: 100px auto;
    max-width: 1000px;
    padding: 0 20px;
}
#center-block {
    text-align: center;
}

.button {
    background-color: #a8d5c2; /* soft green */
    color: white;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin: 25px;
}
.button:hover {
    background-color: #91c8b3; /* slightly darker on hover */
}

.inline-flex {
	max-width: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 10px 0; 
}
.inline-flex img {
	display: block;
	height: 50.13px;
	width: 82.87px;
}

.centered-image {
    display: flex;
    justify-content: center;
    margin: 200px;
}
.full-image {
    display: block;
    width: 99vw;     /* 100% of viewport width */
    height: auto;     /* maintain aspect ratio */
}

/* Left and Right aligned blocks */
.left-block {
  float: left;
  margin: 200px 0px;
}
.left-block p {
  text-align: right;
}
.right-block {
  float: right;
  margin: 100px 0px;
}
.right-block p {
  text-align: right;
}

@media (max-width: 768px) {
  .right-block {
    margin: 50px 0px;
  }
  .right-block img {
    width: 100%;
  }
  .left-block {
    margin: 50px 0px;
  }
  .left-block img {
    width: 100%;
  }

}

.fixed-image {
    display: block;
    width: auto;
    height: auto;
}

/* 4 images on one row */
.image-grid-4x1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 0px;
  margin-left: 0px;
  margin-right: 0px;
}
.image-grid-4x1 img {
  width: 100%;
  height: auto;
}
/* Responsive override for small screens */
@media (max-width: 768px) {
  .image-grid-4x1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 2x2 images */
.image-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 25px;
  margin-left: 0px;
  margin-right: 200px;
}
.image-grid-2x2 img {
  width: auto;
  height: auto;
  max-width: 250px;
}
@media (max-width: 768px) {
  .image-grid-2x2 {
    grid-template-columns: repeat(1, 1fr);
  }
}