/* ===== Purpose Guide Minimal - 초심플 디자인 ===== */

/* ===================================
   창업 준비 도구 섹션
   =================================== */
.startup-tools-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.tools-header {
    text-align: center;
    margin-bottom: 48px;
}

.tools-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
}

.tools-header p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.03);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.tool-expand-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tool-expand-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.tool-expand-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tool-card.active .tool-expand-btn i {
    transform: rotate(180deg);
}

/* 확장 컨텐츠 */
.tool-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-top: 0;
}

.tool-content.active {
    max-height: 2000px;
    opacity: 1;
    margin-top: 24px;
    padding: 40px;
    border: 1px solid rgba(10, 37, 64, 0.06);
}

.tool-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.tool-content-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-close-btn {
    background: transparent;
    border: 1px solid rgba(10, 37, 64, 0.1);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tool-close-btn:hover {
    background: rgba(10, 37, 64, 0.05);
    border-color: rgba(10, 37, 64, 0.2);
}

/* ===================================
   비용 계산기 스타일
   =================================== */
.calculator-form {
    margin-bottom: 40px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.calc-label {
    flex: 1;
    max-width: 40%;
}

.label-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.label-desc {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.calc-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calc-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-unit {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

.calculator-result {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.calculator-result h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 24px 0;
}

.result-breakdown {
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

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

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.result-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid var(--primary);
    margin-top: 16px;
}

.total-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.total-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.result-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 16px 0 0 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.result-note i {
    color: var(--primary);
    margin-top: 2px;
}

/* ===================================
   체크리스트 스타일
   =================================== */
.checklist-progress {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
}

#progress-percentage {
    font-size: 20px;
    color: var(--primary);
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(10, 37, 64, 0.06);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-stats {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.checklist-container {
    margin-bottom: 24px;
}

.checklist-phase {
    margin-bottom: 32px;
}

.phase-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.phase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
}

.phase-count {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.checklist-item:hover {
    background: rgba(99, 102, 241, 0.02);
    border-color: rgba(99, 102, 241, 0.2);
}

.checklist-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 37, 64, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checklist-item input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checklist-item input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.item-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.checklist-item input[type="checkbox"]:checked ~ .item-text {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.checklist-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.action-btn.primary {
    background: var(--primary);
    color: white;
}

.action-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    border: 1px solid rgba(10, 37, 64, 0.2);
    color: var(--text-secondary);
}

.action-btn.secondary:hover {
    background: rgba(10, 37, 64, 0.05);
}

.checklist-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checklist-note i {
    color: var(--primary);
    margin-top: 2px;
}

/* ===================================
   비자 비교표 스타일
   =================================== */
.visa-compare-intro {
    text-align: center;
    margin-bottom: 32px;
}

.visa-compare-intro p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.visa-compare-table {
    overflow-x: auto;
    margin-bottom: 32px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.compare-table thead tr {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.compare-table th {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.compare-category {
    width: 25%;
    text-align: left !important;
}

.compare-visa {
    width: 37.5%;
}

.compare-table tbody tr {
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.category-cell {
    padding: 20px 16px;
    background: rgba(99, 102, 241, 0.03);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-cell i {
    color: var(--primary);
    font-size: 16px;
}

.value-cell {
    padding: 20px 16px;
    background: white;
    text-align: center;
}

.value-cell.highlight {
    background: rgba(99, 102, 241, 0.02);
}

.value-main {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.value-desc {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.value-list {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

.visa-compare-recommendation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.recommendation-box {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid;
}

.d8-box {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.d9-box {
    border-color: rgba(118, 75, 162, 0.3);
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.03) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.recommendation-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
}

.recommendation-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-box li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.recommendation-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.visa-compare-cta {
    text-align: center;
    padding: 32px;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 12px;
}

.visa-compare-cta p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 20px 0;
}

.compare-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.compare-cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.compare-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* 컨테이너 */
#purposeDetailContent {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* 헤더 섹션 */
.purpose-guide-header {
    text-align: center;
    margin-bottom: 48px;
}

.purpose-guide-header h3 {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* 진행 표시 - 숨김 */
.progress-indicator {
    display: none;
}

/* 가이드 섹션 */
.guide-section {
    margin-bottom: 64px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.guide-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.guide-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.guide-section-title .section-icon {
    display: none;
}

.guide-section-badge {
    display: none; /* 갯수 배지 숨김 */
}

/* 단계 타임라인 */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    position: relative;
}

.timeline-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.2s ease;
}

.timeline-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

/* 모바일에서 단일 컬럼 */
@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #3b82f6;
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.step-details {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
}

.step-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.step-details-list li::before {
    content: '✓';
    position: absolute;
    left: 4px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
}

/* 비자 카드 그리드 - 개선된 디자인 */
.visa-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.visa-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.visa-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.visa-id-badge {
    display: inline;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
}

.visa-name {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.visa-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* 리소스 그리드 - PC에서 2열 */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
}

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

.resource-card {
    background: transparent;
    border: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.resource-card:last-child {
    border-bottom: none;
}

.resource-card:hover {
    background: rgba(99, 91, 255, 0.02);
    padding-left: 12px;
    margin-left: -12px;
    padding-right: 12px;
    margin-right: -12px;
}

.resource-icon {
    flex-shrink: 0;
    padding-top: 2px;
}

.resource-icon i {
    font-size: 14px;
    color: var(--text-muted);
}

.resource-content {
    flex: 1;
}

.resource-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.resource-title .external-icon {
    font-size: 10px;
    color: var(--text-muted);
}

.resource-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* 팁 그리드 */
.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tip-item {
    background: #f9fafb;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
}

.tip-item:hover {
    background: #f3f4f6;
}

.tip-icon {
    flex-shrink: 0;
    padding-top: 2px;
}

.tip-icon i {
    font-size: 14px;
    color: var(--text-muted);
}

.tip-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* CTA 섹션 */
.guide-cta {
    background: #111827;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin-top: 64px;
}

.guide-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.guide-cta p {
    font-size: 15px;
    margin: 0 0 28px 0;
    opacity: 0.7;
}

.guide-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: #111827;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 반응형 */
@media (max-width: 768px) {
    #purposeDetailContent {
        max-width: 100%;
    }
    
    .guide-section {
        margin-bottom: 40px;
    }
    
    .guide-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .guide-section-title h2 {
        font-size: 20px;
    }
    
    .steps-timeline {
        padding-left: 28px;
    }
    
    .timeline-step {
        padding: 16px 0 16px 12px;
    }
    
    .timeline-step::before {
        left: -24px;
        width: 12px;
        height: 12px;
    }
    
    .visa-info-card,
    .resource-card {
        padding: 16px 0;
    }
    
    .guide-cta {
        padding: 36px 24px;
        margin-top: 48px;
    }
    
    .guide-cta h3 {
        font-size: 24px;
    }
    
    .guide-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .purpose-guide-header {
        margin-bottom: 32px;
    }
    
    .purpose-guide-header h3 {
        font-size: 14px;
    }
    
    .guide-section {
        margin-bottom: 32px;
    }
    
    .guide-section-title h2 {
        font-size: 19px;
    }
    
    .guide-section-badge {
        font-size: 13px;
    }
    
    .step-title,
    .visa-name,
    .resource-title {
        font-size: 15px;
    }
    
    .step-description,
    .visa-description,
    .resource-desc,
    .tip-text {
        font-size: 13px;
    }
    
    .step-details-list li {
        font-size: 12px;
    }
    
    .guide-cta {
        padding: 28px 20px;
        margin-top: 40px;
    }
    
    .guide-cta h3 {
        font-size: 22px;
    }
    
    .guide-cta p {
        font-size: 14px;
        margin-bottom: 24px;
    }
}
