.design-studio, .faq {
    padding: 2rem;
    text-align: center;
}

.design-tool {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.upload-section, .preview-section {
    max-width: 45%;
    text-align: left;
}

#preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 1rem;
}

.settings {
    margin-top: 1rem;
}

.settings label {
    display: block;
    margin: 0.5rem 0;
}

.note {
    margin-top: 2rem;
    font-style: italic;
}

.faq-items {
    max-width: 800px;
    margin: 2rem auto;
}

details {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

summary {
    cursor: pointer;
    font-weight: bold;
}

details[open] summary {
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .upload-section, .preview-section {
        max-width: 100%;
    }
}