
        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background: #fefefe;
            color: #222;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        h2, h3 {
            margin-top: 0;
        }
        .logo-wrapper {
            text-align: center;
            margin: 20px 0;
        }
        .logo-wrapper img{
            height: 70px !important;
            object-fit: contain;
        }
        .top-section, .bot-section {
            padding: 20px;
            max-width: 1000px;
            margin: auto;
        }
        .time-container {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            text-align: center;
        }
        .time-container .item {
            margin: 10px 0;
        }
        .toggle-button {
            padding: 10px 20px;
            background: #0073e6;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .toggle-button:hover {
            background: #005bb5;
        }
        .info-section ul, .tourist-section ul {
            padding-left: 20px;
            line-height: 1.8;
        }
        .tourist-section h3 {
            margin-top: 30px;
            font-size: 22px;
        }
        .time-importance-section, .global-faq {
            margin-top: 30px;
            padding: 25px 20px;
            border-radius: 10px;
            background: #e6f3ff;
        }
        .faq-item {
            background: #fff;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        h2 {
            font-size: 24px;
            text-align: center;
            color: #0073c7;
        }
        h3, h4 {
            color: #007d99;
        }
        a {
            color: #ff0080;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .time-container {
                padding: 15px;
            }
            h2 {
                font-size: 20px;
            }
            .toggle-button {
                width: 100%;
                padding: 10px;
                margin-top: 10px;
            }
            .info-section ul, .tourist-section ul {
                padding-left: 15px;
            }
            .faq-item {
                padding: 12px;
            }
        }
        .footer {
            background-color: #f2f2f2;
            padding: 15px 20px;
            font-size: 14px;
            color: #333;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            max-width: 1000px;
            margin: auto;
        }
        .footer .left {
            margin-bottom: 10px;
        }
        .footer .right a {
            margin-left: 15px;
            color: #000;
            text-decoration: none;
        }
        .footer .right a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer .right a {
                margin: 5px;
            }
        }
