/* 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-red: #dc2626;
    --primary-green: #16a34a;
    --primary-purple: #9333ea;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

/* 프레젠테이션 컨테이너 */
.presentation-container {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    min-height: 600px;
    position: relative;
    perspective: 1000px;
}

/* 슬라이드 기본 스타일 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(100%) rotateY(20deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    z-index: 10;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%) rotateY(-20deg);
}

.slide-content {
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    overflow-y: auto;
    position: relative;
}

/* 스크롤바 스타일 */
.slide-content::-webkit-scrollbar {
    width: 8px;
}

.slide-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slide-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.slide-content::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* 표지 슬라이드 */
.cover-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 900px;
    line-height: 1.6;
}

.cover-icons {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.icon-item i {
    font-size: 4rem;
    opacity: 0.9;
}

.icon-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.cover-footer {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.date,
.made-with {
    font-size: 1rem;
    opacity: 0.8;
}

/* 일반 슬라이드 제목 */
.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    border-bottom: 4px solid var(--primary-blue);
    padding-bottom: 15px;
}

.slide-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.slide-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 목차 그리드 */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.toc-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: white;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.toc-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.3);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toc-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* 컨텐츠 컬럼 */
.content-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.column {
    display: flex;
    flex-direction: column;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 5px solid;
}

.content-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-box i {
    font-size: 1.5rem;
}

.content-box ul {
    list-style: none;
}

.content-box ul li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.content-box ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    font-size: 1.5rem;
    font-weight: bold;
}

.blue-box {
    border-left-color: var(--primary-blue);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.blue-box h3 {
    color: var(--primary-blue);
}

.blue-box ul li::before {
    color: var(--primary-blue);
}

.red-box {
    border-left-color: var(--primary-red);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.red-box h3 {
    color: var(--primary-red);
}

.red-box ul li::before {
    color: var(--primary-red);
}

.green-box {
    border-left-color: var(--primary-green);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.green-box h3 {
    color: var(--primary-green);
}

.green-box ul li::before {
    color: var(--primary-green);
}

/* 사례 연구 */
.case-study {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-blue);
}

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

.case-header i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.case-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.case-study p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* 실행 계획 그리드 */
.implementation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.impl-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-blue);
}

.impl-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top-color: #f59e0b;
}

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

.impl-header i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.impl-card.highlight .impl-header i {
    color: #f59e0b;
}

.impl-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.impl-card ul {
    list-style: none;
}

.impl-card ul li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.impl-card ul li:last-child {
    border-bottom: none;
}

.impl-card ul li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.impl-card ul li br + text() {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* 핵심 인사이트 */
.key-insight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.key-insight i {
    font-size: 2.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.key-insight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* VOC 시스템 */
.voc-overview {
    margin-bottom: 30px;
}

.voc-definition {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
}

.voc-definition h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.voc-definition i {
    font-size: 1.8rem;
}

.voc-definition p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* 2컬럼 레이아웃 */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.process-box,
.benefits-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.process-box h4,
.benefits-box h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
}

.process-box i,
.benefits-box i {
    font-size: 1.6rem;
}

/* 프로세스 단계 */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* 혜택 아이템 */
.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefit p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* 문제 박스 */
.problem-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-red);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.problem-header i {
    font-size: 2rem;
    color: var(--primary-red);
}

.problem-header h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
}

.problem-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.problem-item strong {
    color: var(--primary-red);
}

/* 솔루션 그리드 */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.solution-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.solution-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.solution-card ul li::before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: var(--primary-green);
    font-weight: bold;
}

/* 핵심 메시지 */
.key-message {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.key-message i {
    font-size: 2.5rem;
    color: #dc2626;
    flex-shrink: 0;
}

.key-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* 세대 개요 */
.generation-overview {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.gen-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gen-box h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gen-box i {
    font-size: 1.5rem;
}

.gen-box ul {
    list-style: none;
}

.gen-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.gen-box ul li::before {
    content: "▸";
    position: absolute;
    left: 5px;
    color: var(--primary-blue);
    font-weight: bold;
}

.vs-divider {
    font-size: 3rem;
    color: var(--primary-purple);
}

/* 갈등 해결 전략 */
.conflict-solutions {
    margin-bottom: 40px;
}

.conflict-solutions h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.conflict-solutions h3 i {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.strategy-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-purple);
}

.strategy-number {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.strategy-item h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.strategy-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 프로팀 문화 */
.pro-team-culture {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.pro-team-culture h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-team-culture h3 i {
    font-size: 1.8rem;
}

.culture-elements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.element {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.element i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.element h5 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* 결론 슬라이드 */
.conclusion-summary {
    margin-bottom: 40px;
}

.summary-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
}

.summary-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.summary-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.summary-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* 제언 */
.recommendations {
    margin-bottom: 40px;
}

.recommendations h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recommendations h3 i {
    color: #f59e0b;
    font-size: 1.8rem;
}

.recommendation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rec-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.rec-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rec-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.rec-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 최종 메시지 */
.final-message {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.final-message .fa-quote-left {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
}

.final-message .fa-quote-right {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
}

.final-message .quote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
}

/* 마지막 슬라이드 */
.end-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thank-you-content {
    width: 100%;
}

.thank-you-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.thank-you-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 80px;
}

.contact-info p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info i {
    margin-right: 10px;
}

.end-footer {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* 슬라이드 푸터 */
.slide-footer {
    position: absolute;
    bottom: 30px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-title {
    font-weight: 500;
    color: var(--text-dark);
}

/* 네비게이션 컨트롤 */
.navigation {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
}

.slide-counter {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 80px;
    text-align: center;
}

/* 프로그레스 바 */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    width: 11.11%;
}

/* 슬라이드 인디케이터 */
.slide-indicators {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: white;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .slide-content {
        padding: 50px 60px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .content-columns {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-elements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 40px 30px;
        padding-bottom: 100px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .cover-icons {
        flex-direction: column;
        gap: 30px;
    }
    
    .implementation-grid {
        grid-template-columns: 1fr;
    }
    
    .generation-overview {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        display: none;
    }
    
    .culture-elements {
        grid-template-columns: 1fr;
    }
    
    .thank-you-title {
        font-size: 3rem;
    }
    
    .navigation {
        bottom: 20px;
        padding: 12px 20px;
        gap: 20px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-counter {
        font-size: 1rem;
        min-width: 60px;
    }
    
    .slide-indicators {
        right: 15px;
    }
    
    .slide-footer {
        left: 30px;
        right: 30px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}