:root{--build-id:"72581bc9-3f7b-4463-ae61-382a1600b8b1";}
/* ===================================
   기본 설정 - F6 폰트 + CS08 컬러
   =================================== */
:root {
  --primary: #16a34a;
  --bg: #dcfce7;
  --text: #166534;
  --accent: #22c55e;
  --heading: #166534;
  --link: #166534;
  --checklist-color: #dc2626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, system-ui, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: #ffffff;
}

/* ===================================
   헤딩 - H08 스타일
   =================================== */
h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--heading);
}

h2 {
  font-size: 3.375rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
}

h3 {
  font-size: 2.531rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading);
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
}

/* ===================================
   접근성
   =================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ===================================
   헤더 - N11 스타일
   =================================== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
  position: absolute;
  right: 2rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    position: static;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .menu-checkbox:checked ~ nav {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ===================================
   컨테이너 - S11 스타일
   =================================== */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.75rem 0;
}

/* ===================================
   히어로 섹션 - L24 스타일
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
  padding: 7rem 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}

.hero-content {
  flex: 1;
}

.hero-text {
  font-size: 1.125rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  max-width: 400px;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.875rem;
  }
}

/* ===================================
   버튼 - B08 스타일
   =================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translate(-2px, -2px);
}

/* ===================================
   특징 섹션 - 6열 그리드
   =================================== */
.features {
  background: #ffffff;
}

.features h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   카드 - K08 스타일
   =================================== */
.feature-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  background: var(--bg);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===================================
   소개 섹션
   =================================== */
.intro {
  background: var(--bg);
}

.intro .container {
  display: flex;
  gap: 3.75rem;
  align-items: center;
}

.intro-content {
  flex: 1.5;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.intro-visual {
  flex: 1;
  max-width: 350px;
}

.intro-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .intro .container {
    flex-direction: column;
  }
}

/* ===================================
   체크리스트 - CS08 스타일
   =================================== */
.checklist {
  background: #ffffff;
}

.checklist h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-left: 3px solid var(--checklist-color);
  background: #fef2f2;
  border-radius: 0.5rem;
}

.check-icon {
  font-size: 1.5rem;
  color: var(--checklist-color);
  font-weight: 700;
  flex-shrink: 0;
}

.check-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--checklist-color);
}

.check-content p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   CTA 섹션
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--bg);
}

/* ===================================
   푸터
   =================================== */
footer {
  background: #f9fafb;
  border-top: 2px solid #e5e7eb;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  gap: 3.75rem;
  margin-bottom: 2.5rem;
}

.footer-brand,
.footer-links,
.footer-info {
  flex: 1;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.footer-links h4,
.footer-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===================================
   문서 페이지 (Privacy/Terms)
   =================================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.doc-container p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}

.doc-container a:hover {
  color: var(--accent);
}

/* ===================================
   페이지 히어로
   =================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.85;
}

/* ===================================
   About 페이지
   =================================== */
.about-intro {
  padding: 5.75rem 0;
}

.about-intro .container {
  display: flex;
  gap: 3.75rem;
  align-items: center;
}

.about-content {
  flex: 1.5;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-visual {
  flex: 1;
  max-width: 400px;
}

.about-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .about-intro .container {
    flex-direction: column;
  }
}

.about-values {
  background: var(--bg);
  padding: 5.75rem 0;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.value-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #ffffff;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.about-process {
  padding: 5.75rem 0;
}

.about-process h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===================================
   Contact 페이지
   =================================== */
.contact-main {
  padding: 5.75rem 0;
}

.contact-grid {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1.5;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 0.75rem;
  border: 2px dashed #9ca3af;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.detail-note {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
}

.contact-visual {
  flex: 1;
  max-width: 400px;
}

.contact-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .contact-grid {
    flex-direction: column;
  }
}

.contact-faq {
  background: #f9fafb;
  padding: 5.75rem 0;
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 0.75rem;
  border: 2px dashed #9ca3af;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.faq-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===================================
   Methods 페이지
   =================================== */
.methods-intro {
  padding: 5.75rem 0;
  background: var(--bg);
}

.methods-intro .intro-text {
  max-width: 900px;
  margin: 0 auto;
}

.methods-intro h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.methods-intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.method-steps {
  padding: 5.75rem 0;
}

.method-steps h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 968px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--primary);
  background: var(--bg);
  transform: translateY(-4px);
}

.step-visual {
  margin-bottom: 1.25rem;
}

.step-visual svg {
  width: 100%;
  height: auto;
}

.step-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.method-tips {
  padding: 5.75rem 0;
  background: #f9fafb;
}

.method-tips h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.tips-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 0.5rem;
  border-left: 3px solid var(--checklist-color);
}

.tip-icon {
  font-size: 1.5rem;
  color: var(--checklist-color);
  font-weight: 700;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--checklist-color);
}

.tip-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===================================
   Benefits 페이지
   =================================== */
.benefits-intro {
  padding: 5.75rem 0;
}

.benefits-text {
  max-width: 900px;
  margin: 0 auto;
}

.benefits-text h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefits-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.benefits-list {
  padding: 5.75rem 0;
  background: var(--bg);
}

.benefits-list h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 968px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.benefits-compare {
  padding: 5.75rem 0;
}

.benefits-compare h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 2rem;
  background: #f9fafb;
}

.compare-item.highlight {
  border-color: var(--primary);
  background: var(--bg);
}

.compare-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.compare-item ul {
  list-style: none;
  padding: 0;
}

.compare-item li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.compare-item li:last-child {
  border-bottom: none;
}

.benefits-testimonial {
  padding: 5.75rem 0;
  background: #f9fafb;
}

.benefits-testimonial h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 968px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--primary);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: var(--text);
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

/* ===================================
   Tips 페이지
   =================================== */
.tips-intro {
  padding: 5.75rem 0;
}

.tips-text {
  max-width: 900px;
  margin: 0 auto;
}

.tips-text h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.tips-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.care-tips {
  padding: 5.75rem 0;
  background: var(--bg);
}

.care-tips h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

.care-card {
  background: #ffffff;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.care-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.care-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.care-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.care-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.care-icon {
  font-size: 1.25rem;
  color: var(--checklist-color);
  font-weight: 700;
  flex-shrink: 0;
}

.care-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.storage-tips {
  padding: 5.75rem 0;
}

.storage-tips h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.storage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .storage-grid {
    grid-template-columns: 1fr;
  }
}

.storage-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s;
}

.storage-card:hover {
  border-color: var(--primary);
  background: var(--bg);
}

.storage-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.storage-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.storage-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.practical-tips {
  padding: 5.75rem 0;
  background: #f9fafb;
}

.practical-tips h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.practical-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.practical-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 0.75rem;
  border: 2px dashed #9ca3af;
}

.practical-item:hover {
  border-color: var(--primary);
}

.tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.practical-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.practical-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
}