.tea-content {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.intro {
    margin-bottom: 4rem;
}

.intro h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intro-content img {
    width: 50%;
    border-radius: 8px;
}

.intro-content .text {
    flex: 1;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.tea-types, .tea-sets {
    margin-bottom: 4rem;
}

.tea-types h2, .tea-sets h2, .tea-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.type-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.type-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.type-item p {
    color: #666;
}

.set-items, .step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.set-item, .step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.set-item img, .step-item img {
    width: 300px;
    border-radius: 4px;
}

.set-info h3, .step-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.set-info p, .step-info p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-content img {
        width: 100%;
    }
    
    .set-item, .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .set-item img, .step-item img {
        width: 100%;
    }
} 