main.container {
            padding: 20px;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .tea-culture-intro, .tea-history, .tea-types, .tea-ceremony {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .tea-culture-intro:hover, .tea-history:hover, .tea-types:hover, .tea-ceremony:hover {
            transform: translateY(-5px);
        }

        .tea-culture-intro h1 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .tea-culture-intro p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        .tea-history h2, .tea-types h2, .tea-ceremony h2 {
            font-size: 30px;
            color: #333;
            margin-bottom: 25px;
            border-bottom: 2px solid #e8420a;
            padding-bottom: 10px;
        }

        .history-item h3 {
            font-size: 24px;
            color: #555;
            margin-bottom: 15px;
        }

        .history-item p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        .type-item {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
            transition: background-color 0.3s ease;
        }

        .type-item:hover {
            background-color: #f0f0f0;
        }

        .type-item img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .type-item h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }

        .type-item p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        .tea-ceremony p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            float: right;
            padding-right: 5px;
            transform: translateY(20px);
        }
        .header-container a {
            text-emphasis: none;
            text-decoration: none;
            color: #333;   
        }
        .header-container a h3 {
            background-color: #333;
            color: #333;
            transition: color 0.3s;    
        }

        .header-container a:hover {
            color: #333;
        }

        .header-container a h3 {
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
        }

        p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .header-container .STYLE20 {
            font-size: 14px;
            color: #666;
            margin: 0;
        }
    @media (max-width: 768px) {
        .type-item {
            flex-direction: column;
        }
        
        .type-item img {
            width: 100%;
            height: auto;
        }
    }
    