    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #ffffff;
            min-height: 100vh;
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .header {
            position: relative;
            height: 180px;
            overflow: hidden;
            width: 100%;
            margin: 0;
        }

        .header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .museum-label {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
        }

        .logo-image {
            height: 60px;
            width: auto;
            display: block;
        }

        .content {
            padding: 10px;
            background: white;
            width: 100%;
            margin: 0;
            padding-bottom: 100px;
        }

        .language-selector {
            background: white;
            border: 2px solid #ffc800;
            border-radius: 3px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            cursor: pointer;
            font-size: 16px;
            position: relative;
        }

        .language-selector:hover {
            border-color: #ffb300;
            background: #fffbf0;
        }

        .dropdown-arrow {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #ffc800;
            transition: transform 0.3s;
        }

        .language-selector.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #ffc800;
            border-top: none;
            border-radius: 0 0 3px 3px;
            display: none;
            z-index: 100;
        }

        .language-dropdown.show {
            display: block;
        }

        .language-option {
            padding: 12px 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .language-option:hover {
            background: #f5f5f5;
        }

        .language-option.selected {
            background: #fff3cd;
            font-weight: 500;
        }

        .progress-bar {
            display: flex;
            margin-bottom: 25px;
            background: transparent;
            width: 100%;
            overflow: hidden;
            gap: 3px;
        }

        .progress-step {
            background: transparent;
            color: #333;
            padding: 10px 4px;
            text-align: center;
            font-size: 13px;
            border: 2px solid #ffc800;
            white-space: nowrap;
            flex: 1;
            min-width: 0;
        }

        .progress-step:nth-child(1) {
            flex: 1 1 auto;
            padding: 10px 8px;
        }

        .progress-step:nth-child(2),
        .progress-step:nth-child(3),
        .progress-step:nth-child(4),
        .progress-step:nth-child(5) {
            flex: 0 0 auto;
            width: 12%;
        }

        .progress-step.active {
            background: #ffc800;
            font-weight: 500;
        }

        h1 {
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: 400;
            color: #000;
            line-height: 1.2;
        }

        h2 {
            font-size: 20px;
            margin-bottom: 20px;
            margin-top: 30px;
            font-weight: 700;
            color: #000;
        }

        .ticket-category {
            margin-bottom: 35px;
        }

        .ticket-category > h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .ticket-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .ticket-info {
            flex: 1;
        }

        .ticket-name {
            font-size: 16px;
            font-weight: 400;
            color: #000;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background: #000;
            color: white;
            border-radius: 50%;
            font-size: 12px;
            font-weight: bold;
            cursor: help;
        }

        .ticket-price {
            font-size: 16px;
            font-weight: 700;
            color: #000;
        }

        .ticket-selector {
            min-width: 80px;
        }

        .ticket-select {
            width: 100%;
            padding: 8px 12px;
            border: 2px solid #ffc800;
            border-radius: 3px;
            font-size: 16px;
            background: white;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc800' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            padding-right: 30px;
        }

        .ticket-select:hover {
            background-color: #fffbf0;
        }

        .show-more {
            background: none;
            border: none;
            color: #000;
            font-size: 16px;
            cursor: pointer;
            padding: 10px 0;
            text-decoration: underline;
            margin-top: 10px;
        }

        .audio-guide-box {
            background: #f8f8f8;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #4a7c9e;
        }

        .audio-guide-inner {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .audio-guide-content {
            flex: 1;
        }

        .audio-guide-title {
            font-size: 18px;
            color: #4a7c9e;
            font-weight: 500;
            margin-bottom: 15px;
        }

.total-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding: 0.5em;
    border-top: 2px solid #ffc800;
    border-bottom: 2px solid #ffc800;
}

        .language-flags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin: 15px 0;
        }

        .flag {
            width: 32px;
            height: 22px;
            border: 1px solid #ddd;
            background-size: cover;
        }

        .availability-check {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2d7a3e;
            font-size: 15px;
        }

        .check-icon {
            width: 18px;
            height: 18px;
            background: #2d7a3e;
            color: white;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

        .info-box {
            background: white;
            border: 2px solid #ffc800;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }

        .info-box h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #000;
        }

        .info-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-box li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.5;
            color: #333;
        }

        .info-box li:before {
            content: "•";
            position: absolute;
            left: 8px;
            color: #000;
            font-weight: bold;
        }

        .questions-box {
            background: #ffc800;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }

        .questions-box h3 {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 15px;
            color: #000;
            line-height: 1.3;
        }

        .questions-box p {
            font-size: 16px;
            line-height: 1.6;
            color: #000;
            margin: 0;
        }

        .questions-box a {
            color: #000;
            text-decoration: underline;
            font-weight: 500;
        }

        .navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: transparent;
            padding: 15px 20px;
            display: flex;
            justify-content: flex-end;
            z-index: 100;
        }

        .next-btn {
            background: #333;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 400;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .next-btn::after {
            content: '›';
            font-size: 24px;
            font-weight: 300;
        }

        .next-btn:hover:not(:disabled) {
            background: #666;
        }

        .next-btn:disabled {
            background: #666;
            opacity: 0.6;
            cursor: not-allowed;
            color: white;
        }

        @media (max-width: 600px) {
            .content {
                padding: 15px;
            }

            h1 {
                font-size: 26px;
            }

            .audio-guide-box {
                flex-direction: column;
            }

            .audio-guide-inner {
                flex-direction: column;
            }

            .progress-step {
                font-size: 13px;
                padding: 10px 6px;
            }
            
            .progress-step:nth-child(1) {
                flex: 1 1 auto;
                width: auto;
            }
            
            .progress-step:nth-child(2),
            .progress-step:nth-child(3),
            .progress-step:nth-child(4),
            .progress-step:nth-child(5) {
                flex: 0 0 40px;
                width: 40px;
            }

            .content {
                padding-bottom: 140px;
            }

            .navigation {
                padding: 12px 15px;
            }

            .next-btn {
                padding: 12px 30px;
                font-size: 15px;
            }
        }