/* 01*/

.sam133-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.sam133-image {
  width: 100%;
  height: 400px;
  margin-bottom: 80px;
  overflow: hidden;
}

.sam133-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam133-content {
  display: flex;
  gap: 80px;
}

.sam133-left {
  flex: 1;
}

.sam133-title {
  font-size: 64px;
  font-weight: 700;
  color: #ff7b4a;
  line-height: 1.2;
  margin-bottom: 40px;
}

.sam133-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.sam133-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
}

.sam133-button {
  display: inline-block;
  padding: 15px 50px;
  border: 2px solid #333;
  background: transparent;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sam133-button:hover {
  background: #333;
  color: white;
}

.sam133-right {
  flex: 1;
}

.sam133-info-table {
  border-top: 2px solid #333;
}

.sam133-info-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 25px 0;
}

.sam133-info-label {
  width: 200px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
}

.sam133-info-value {
  flex: 1;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sam133-container {
    padding: 80px 30px;
  }

  .sam133-image {
    height: 300px;
    margin-bottom: 60px;
  }

  .sam133-content {
    flex-direction: column;
    gap: 60px;
  }

  .sam133-title {
    font-size: 48px;
  }

  .sam133-subtitle {
    font-size: 20px;
  }

  .sam133-info-label {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .sam133-container {
    padding: 60px 20px;
  }

  .sam133-image {
    height: 250px;
    margin-bottom: 40px;
  }

  .sam133-content {
    gap: 40px;
  }

  .sam133-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .sam133-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .sam133-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .sam133-button {
    padding: 12px 40px;
    font-size: 14px;
  }

  .sam133-info-row {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .sam133-info-label {
    width: 100%;
    font-size: 14px;
  }

  .sam133-info-value {
    font-size: 14px;
  }
}

/* 02*/

.sam174-section {
  padding: 100px 40px;
  background: #fff;
  overflow-x: hidden;
  box-sizing: border-box;
}

.sam174-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sam174-header {
  text-align: center;
  margin-bottom: 80px;
}

.sam174-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.sam174-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
}

.sam174-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.sam174-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sam174-card {
  background: #ffffff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 20px 40px;
  text-align: center;
  transition: all 0.3s;
}

.sam174-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #222;
}

.sam174-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sam174-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sam174-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.sam174-list {
  list-style: none;
  text-align: left;
  padding-left: 0;
}

.sam174-list li {
  font-size: 12px;
  color: #434343;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.2;
}

.sam174-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #222;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .sam174-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sam174-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .sam174-section {
    padding: 60px 20px;
  }

  .sam174-header {
    margin-bottom: 50px;
  }

  .sam174-subtitle {
    font-size: 16px;
  }

  .sam174-title {
    font-size: 28px;
  }

  .sam174-desc {
    font-size: 15px;
  }

  .sam174-desc br {
    display: none;
  }

  .sam174-card {
    padding: 40px 30px;
  }

  .sam174-card-title {
    font-size: 22px;
  }

  .sam174-icon {
    width: 60px;
    height: 60px;
  }
}

/* 03*/

.bz11-art-section {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 100px 60px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.bz11-content-row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
  margin-bottom: 150px;
  overflow: hidden;
}

.bz11-content-row.reverse {
  grid-template-columns: 45% 55%;
  overflow: hidden;
}

.bz11-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.bz11-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.bz11-text-container {
  padding: 60px 80px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1s ease,
    transform 1s ease;
  box-sizing: border-box;
  max-width: 100%;
}

.bz11-text-container.bz11-visible {
  opacity: 1;
  transform: translateY(0);
}

.bz11-content-row.reverse .bz11-text-container {
  order: -1;
}

.bz11-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000;
  font-family: Georgia, serif;
  letter-spacing: 1px;
}

.bz11-description {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.bz11-subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.bz11-main-text {
  font-size: 26px;
  font-weight: 300;
  color: #333;
  font-family: Georgia, serif;
  line-height: 1.4;
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .bz11-content-row,
  .bz11-content-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bz11-content-row.reverse .bz11-text-container {
    order: 0;
  }

  .bz11-text-container {
    padding: 40px;
    box-sizing: border-box;
  }

  .bz11-title {
    font-size: 36px;
  }

  .bz11-main-text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .bz11-art-section {
    padding: 60px 30px;
    overflow-x: hidden;
  }

  .bz11-text-container {
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .bz11-title {
    font-size: 32px;
  }

  .bz11-main-text {
    font-size: 24px;
  }
}

/* 04 서브비주얼*/

.dal02-subvisual {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.dal02-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.dal02-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dal02-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.dal02-text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.dal02-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.dal02-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .dal02-subvisual {
    height: 400px;
  }

  .dal02-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .dal02-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }
}

/* 04 서브비주얼*/

/* 05*/

.sam118-container {
  width: 100%;
  background-color: #fff;
  padding: 60px 0;
}
.sam118-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.sam118-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.sam118-right-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.sam118-customer-box {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  padding: 50px 40px;
  text-align: center;
}
.sam118-customer-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.sam118-customer-phone {
  font-size: 48px;
  font-weight: 800;
  color: #e63946;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.sam118-customer-time {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 5px;
}
.sam118-customer-note {
  font-size: 15px;
  color: #e63946;
  margin-top: 30px;
  font-weight: 500;
}
.sam118-as-box {
  background-color: #e63946;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  position: relative;
}
.sam118-as-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.sam118-as-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sam118-as-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}
.sam118-as-text {
  font-size: 15px;
  line-height: 1.8;
}
.sam118-guide-box {
  background-color: #3d3d3d;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  position: relative;
}
.sam118-guide-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.sam118-guide-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sam118-guide-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}
.sam118-guide-text {
  font-size: 15px;
  line-height: 1.8;
}
.sam118-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.sam118-left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sam118-link-box {
  background-color: #f8f8f8;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.sam118-link-box:hover {
  background-color: #f0f0f0;
}
.sam118-link-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.sam118-link-content {
  flex: 1;
}
.sam118-link-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.sam118-link-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.sam118-archive-box {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  padding: 40px;
}
.sam118-archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #222;
}
.sam118-archive-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}
.sam118-archive-more {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  cursor: pointer;
}
.sam118-archive-more:hover {
  color: #e63946;
}
.sam118-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sam118-archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s;
}
.sam118-archive-item:hover {
  background-color: #f9f9f9;
  padding-left: 10px;
}
.sam118-archive-item:last-child {
  border-bottom: none;
}
.sam118-archive-label {
  font-size: 14px;
  font-weight: 700;
  color: #e63946;
  margin-right: 15px;
  padding: 4px 10px;
  border: 1px solid #e63946;
}
.sam118-archive-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.sam118-archive-date {
  font-size: 14px;
  color: #999;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .sam118-top-row {
    grid-template-columns: 1fr;
  }
  .sam118-bottom-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sam118-container {
    padding: 40px 0;
  }
  .sam118-content {
    padding: 0 20px;
  }
  .sam118-customer-phone {
    font-size: 36px;
  }
  .sam118-customer-box,
  .sam118-as-box,
  .sam118-guide-box {
    padding: 30px 20px;
  }
  .sam118-link-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .sam118-archive-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sam118-archive-date {
    margin-left: 0;
  }
}

/* 06*/

.sam86-container {
  width: 100%;
  background-color: #f8f8f8;
  padding: 80px 0;
}

.sam86-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.sam86-header {
  text-align: center;
  margin-bottom: 60px;
}

.sam86-title {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.sam86-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.sam86-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sam86-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.sam86-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sam86-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.sam86-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sam86-card:hover .sam86-card-image img {
  transform: scale(1.05);
}

.sam86-card-content {
  padding: 35px 30px;
}

.sam86-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.sam86-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .sam86-cards {
    grid-template-columns: 1fr;
  }

  .sam86-card-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .sam86-container {
    padding: 50px 0;
  }

  .sam86-content {
    padding: 0 20px;
  }

  .sam86-title {
    font-size: 36px;
  }

  .sam86-card-image {
    height: 240px;
  }

  .sam86-card-content {
    padding: 25px 20px;
  }

  .sam86-card-title {
    font-size: 20px;
  }
}

/* 07*/

.sam119-container {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
}
.sam119-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.sam119-header {
  text-align: center;
  margin-bottom: 80px;
}
.sam119-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin-bottom: 30px;
}
.sam119-divider {
  width: 80px;
  height: 2px;
  background-color: #ddd;
  margin: 0 auto;
}
.sam119-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid #e0e0e0;
}
.sam119-item {
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 50px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.3s;
  min-height: 350px;
}
.sam119-item.tall {
  grid-row: span 2;
  min-height: 730px;
}
.sam119-item:hover {
  background-color: #f9f9f9;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.sam119-image-wrapper {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.sam119-image {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}
.sam119-award-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.4;
}
.sam119-award-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .sam119-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .sam119-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam119-title {
    font-size: 28px;
  }
  .sam119-item {
    padding: 40px 20px;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .sam119-container {
    padding: 50px 0;
  }
  .sam119-content {
    padding: 0 20px;
  }
  .sam119-grid {
    grid-template-columns: 1fr;
  }
  .sam119-title {
    font-size: 22px;
  }
}

/* 08*/

.sam117-container {
  width: 100%;
  background-color: #fff;
  padding: 60px 0;
}
.sam117-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.sam117-tab-menu {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}
.sam117-tab-btn {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
}
.sam117-tab-btn.active {
  border-color: #222;
  color: #222;
  background-color: #f8f8f8;
}
.sam117-tab-btn:hover {
  border-color: #222;
}
.sam117-tab-content {
  display: none;
}
.sam117-tab-content.active {
  display: block;
}
.sam117-location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.sam117-map-section {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.sam117-map-section.full {
  width: 100%;
  height: 600px;
}
.sam117-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 968px) {
  .sam117-tab-menu {
    flex-wrap: wrap;
  }
  .sam117-tab-btn {
    flex: 1 1 calc(50% - 8px);
    font-size: 16px;
    padding: 15px;
  }
  .sam117-map-section {
    height: 400px;
  }
  .sam117-map-section.full {
    height: 500px;
  }
}

@media (max-width: 640px) {
  .sam117-container {
    padding: 40px 0;
  }
  .sam117-content {
    padding: 0 20px;
  }
  .sam117-tab-btn {
    flex: 1 1 100%;
    font-size: 15px;
  }
  .sam117-map-section {
    height: 300px;
  }
  .sam117-map-section.full {
    height: 400px;
  }
}

/* 폼*/

.sam196-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sam196-header {
  text-align: center;
  margin-bottom: 50px;
}

.sam196-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.sam196-subtitle {
  font-size: 1.1rem;
  color: #999;
  letter-spacing: 0.1em;
}

.sam196-info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.sam196-info-box {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
}

.sam196-info-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 15px;
}

.sam196-info-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.sam196-form {
  max-width: 800px;
  margin: 0 auto;
}

.sam196-form-group {
  margin-bottom: 30px;
}

.sam196-form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.sam196-form-label .sam196-required {
  color: #d32f2f;
  margin-left: 3px;
}

.sam196-form-input,
.sam196-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.sam196-form-input:focus,
.sam196-form-textarea:focus {
  outline: none;
  border-color: #333;
}

.sam196-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.sam196-date-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sam196-date-input input {
  flex: 1;
}

.sam196-checkbox-group,
.sam196-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.sam196-checkbox-item,
.sam196-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sam196-checkbox-item input,
.sam196-radio-item input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sam196-checkbox-item label,
.sam196-radio-item label {
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
}

.sam196-policy-box {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}

.sam196-agree-checkbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sam196-agree-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sam196-agree-checkbox label {
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
}

.sam196-submit-btn {
  width: 100%;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 40px;
}

.sam196-submit-btn:hover {
  background: #333;
}

.sam196-helper-text {
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .sam196-container {
    padding: 30px 20px;
  }

  .sam196-title {
    font-size: 2rem;
  }

  .sam196-info-boxes {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sam196-checkbox-group,
  .sam196-radio-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* 고지*/

.sam66-section {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.sam66-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sam66-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.sam66-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 80px;
}

.sam66-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sam66-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 50px 60px;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sam66-card-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.sam66-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sam66-card-subtitle {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}

.sam66-card-title {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .sam66-title {
    font-size: 36px;
  }

  .sam66-description {
    font-size: 14px;
  }

  .sam66-card {
    padding: 35px 40px;
    padding-top: 60px;
  }

  .sam66-card-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: -25px;
  }

  .sam66-card-subtitle {
    font-size: 18px;
  }

  .sam66-card-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sam66-title {
    font-size: 28px;
  }

  .sam66-card {
    padding: 25px 30px;
  }

  .sam66-card-title {
    font-size: 13px;
  }
}
